diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/bluetooth.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bluetooth.h b/include/bluetooth.h index 9304ddd6..80a2d169 100644 --- a/include/bluetooth.h +++ b/include/bluetooth.h @@ -88,7 +88,7 @@ enum { #endif /* Bluetooth unaligned access */ -#if defined(__i386__) || defined(__x86_64__) || defined(__powerpc__) || defined(__s390__) +#if defined(__i386__) || defined(__x86_64__) || defined(__powerpc__) || defined(__s390__) || defined(__cris__) #define bt_get_unaligned(ptr) (*(ptr)) #define bt_put_unaligned(val, ptr) ((void)( *(ptr) = (val) )) #else |