From 02f41dc112d035da030b2c14f02baaae2f7c3c18 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Thu, 12 Aug 2004 21:22:37 +0000 Subject: Add architectures that can do unaligned access by themself --- include/bluetooth.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bluetooth.h b/include/bluetooth.h index e286ffb9..9304ddd6 100644 --- a/include/bluetooth.h +++ b/include/bluetooth.h @@ -88,7 +88,7 @@ enum { #endif /* Bluetooth unaligned access */ -#if defined(__i386__) +#if defined(__i386__) || defined(__x86_64__) || defined(__powerpc__) || defined(__s390__) #define bt_get_unaligned(ptr) (*(ptr)) #define bt_put_unaligned(val, ptr) ((void)( *(ptr) = (val) )) #else -- cgit