summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2022-01-26 12:52:46 +0700
committerGitHub <[email protected]>2022-01-26 12:52:46 +0700
commiteea19daac640a4895eb9ce7b745c5f873831404b (patch)
tree7b32328cf010b7641c4b513f441ccae5a1710b92 /src/common
parenta59228207999329eb16fddbeb6286dfc36f4c0bd (diff)
parent7de166390ed6125e851af9a3e8221fbd3f3a773b (diff)
Merge pull request #1220 from t123yh/master
Add support for Allwinner F1C100s family
Diffstat (limited to 'src/common')
-rw-r--r--src/common/tusb_compiler.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/tusb_compiler.h b/src/common/tusb_compiler.h
index d3284c62a..38e6a16d0 100644
--- a/src/common/tusb_compiler.h
+++ b/src/common/tusb_compiler.h
@@ -137,9 +137,11 @@
#define TU_BSWAP16(u16) (__builtin_bswap16(u16))
#define TU_BSWAP32(u32) (__builtin_bswap32(u32))
+ #ifndef __ARMCC_VERSION
// List of obsolete callback function that is renamed and should not be defined.
// Put it here since only gcc support this pragma
- #pragma GCC poison tud_vendor_control_request_cb
+ #pragma GCC poison tud_vendor_control_request_cb
+ #endif
#elif defined(__TI_COMPILER_VERSION__)
#define TU_ATTR_ALIGNED(Bytes) __attribute__ ((aligned(Bytes)))