Thread (2 messages) flat view 2 messages, 2 authors, 2014-02-24
STALE4578d

[PATCH] Bluetooth: Fix bluetooth.h for inclusion in clang projects

From: Donald Carr <hidden>
Date: 2014-02-24 16:38:30
Subsystem: library code, the rest · Maintainers: Andrew Morton, Linus Torvalds

From b12351dacb8e7fc44668ab4011db1d1b2b83e883 Mon Sep 17 00:00:00 2001
From: Donald Carr <redacted>
Date: Mon, 24 Feb 2014 08:34:46 -0800
Subject: [PATCH] Move from typeof gcc intrinsic to __typeof__

Change-Id: Ic3aa6ec1446876bfabdcc5e120ec327e177ffc74
---
 lib/bluetooth.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/lib/bluetooth.h b/lib/bluetooth.h
index 61c1f9a..bc9b35e 100644
--- a/lib/bluetooth.h
+++ b/lib/bluetooth.h
@@ -158,16 +158,16 @@ enum {
 #define bt_get_unaligned(ptr)                  \
 ({                                             \
        struct __attribute__((packed)) {        \
-               typeof(*(ptr)) __v;             \
-       } *__p = (typeof(__p)) (ptr);           \
+               __typeof__(*(ptr)) __v;         \
+       } *__p = (__typeof__(__p)) (ptr);               \
        __p->__v;                               \
 })

 #define bt_put_unaligned(val, ptr)             \
 do {                                           \
        struct __attribute__((packed)) {        \
-               typeof(*(ptr)) __v;             \
-       } *__p = (typeof(__p)) (ptr);           \
+               __typeof__(*(ptr)) __v;         \
+       } *__p = (__typeof__(__p)) (ptr);               \
        __p->__v = (val);                       \
 } while(0)

--
1.9.0

-- 
-------------------------------
 °v°  Donald Carr
/(_)\ Vaguely Professional Penguin lover
 ^ ^

Cave canem, te necet lingendo
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help