aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2013-01-27 19:48:29 +0000
committerDean Camera <dean@fourwalledcubicle.com>2013-01-27 19:48:29 +0000
commitda42e8840d760b79462071ff84cdce4ff823ad2c (patch)
treefa21b7f6a318b3a78c785c3c445d45ca7b1d693b /LUFA/Drivers
parentfb18c315d02303e3f32fda41fcde3b16e747f10b (diff)
downloadlufa-da42e8840d760b79462071ff84cdce4ff823ad2c.tar.gz
lufa-da42e8840d760b79462071ff84cdce4ff823ad2c.tar.bz2
lufa-da42e8840d760b79462071ff84cdce4ff823ad2c.zip
Suppress unused function parameter warnings in the USB driver.
Diffstat (limited to 'LUFA/Drivers')
-rw-r--r--LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h4
-rw-r--r--LUFA/Drivers/USB/Core/UC3/Device_UC3.h2
-rw-r--r--LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h2
3 files changed, 7 insertions, 1 deletions
diff --git a/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h b/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h
index a2a2ddf0e..a0dba7bc5 100644
--- a/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h
+++ b/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h
@@ -216,7 +216,9 @@
static inline void USB_Device_EnableDeviceAddress(const uint8_t Address) ATTR_ALWAYS_INLINE;
static inline void USB_Device_EnableDeviceAddress(const uint8_t Address)
{
- UDADDR |= (1 << ADDEN);
+ (void)Address;
+
+ UDADDR |= (1 << ADDEN);
}
static inline bool USB_Device_IsAddressSet(void) ATTR_ALWAYS_INLINE ATTR_WARN_UNUSED_RESULT;
diff --git a/LUFA/Drivers/USB/Core/UC3/Device_UC3.h b/LUFA/Drivers/USB/Core/UC3/Device_UC3.h
index 60a1e27a8..854e321b2 100644
--- a/LUFA/Drivers/USB/Core/UC3/Device_UC3.h
+++ b/LUFA/Drivers/USB/Core/UC3/Device_UC3.h
@@ -214,6 +214,8 @@
static inline void USB_Device_EnableDeviceAddress(const uint8_t Address) ATTR_ALWAYS_INLINE;
static inline void USB_Device_EnableDeviceAddress(const uint8_t Address)
{
+ (void)Address;
+
AVR32_USBB.UDCON.adden = true;
}
diff --git a/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h b/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h
index 6e2380a17..7b82c7c45 100644
--- a/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h
+++ b/LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h
@@ -205,6 +205,8 @@
static inline void USB_Device_SetDeviceAddress(const uint8_t Address) ATTR_ALWAYS_INLINE;
static inline void USB_Device_SetDeviceAddress(const uint8_t Address)
{
+ (void)Address;
+
/* No implementation for XMEGA architecture */
}