summaryrefslogtreecommitdiff
path: root/src/device/dcd.h
diff options
context:
space:
mode:
authorhathach <[email protected]>2021-12-29 18:27:29 +0700
committerhathach <[email protected]>2021-12-29 18:27:29 +0700
commit30aba24ddc0d25dfa796de3a5d3857a13d440f5e (patch)
tree8cbb988ba6ca126b330cf1fb59a903dbcbee5c90 /src/device/dcd.h
parenta6789b5d5a3c9e41771e5eb8fdb08182c95fbe08 (diff)
parent527036b1f5a3f0aa3994f62e3ab18fa990a40cf8 (diff)
Merge branch 'master' of https://github.com/t123yh/tinyusb into t123yh-master
Diffstat (limited to 'src/device/dcd.h')
-rw-r--r--src/device/dcd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/device/dcd.h b/src/device/dcd.h
index c042cc708..fbcef40d4 100644
--- a/src/device/dcd.h
+++ b/src/device/dcd.h
@@ -106,12 +106,12 @@ typedef struct TU_ATTR_ALIGNED(4)
void dcd_init (uint8_t rhport);
// Interrupt Handler
-#if __GNUC__
+#if __GNUC__ && !defined(__ARMCC_VERSION)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wredundant-decls"
#endif
void dcd_int_handler(uint8_t rhport);
-#if __GNUC__
+#if __GNUC__ && !defined(__ARMCC_VERSION)
#pragma GCC diagnostic pop
#endif