aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/AVR8
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2013-01-27 19:35:40 +0000
committerDean Camera <dean@fourwalledcubicle.com>2013-01-27 19:35:40 +0000
commitfb18c315d02303e3f32fda41fcde3b16e747f10b (patch)
treef828d9d8f650227710daacc502a3c8a41c61f199 /LUFA/Drivers/USB/Core/AVR8
parentf8f8ac0b1a4745da8e5311ddb0bd395b7dd18ba8 (diff)
downloadlufa-fb18c315d02303e3f32fda41fcde3b16e747f10b.tar.gz
lufa-fb18c315d02303e3f32fda41fcde3b16e747f10b.tar.bz2
lufa-fb18c315d02303e3f32fda41fcde3b16e747f10b.zip
Fix broken XMEGA USB support.
Diffstat (limited to 'LUFA/Drivers/USB/Core/AVR8')
-rw-r--r--LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h b/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h
index 787469026..a2a2ddf0e 100644
--- a/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h
+++ b/LUFA/Drivers/USB/Core/AVR8/Device_AVR8.h
@@ -213,8 +213,8 @@
UDADDR = (UDADDR & (1 << ADDEN)) | (Address & 0x7F);
}
- static inline void USB_Device_EnableDeviceAddress(void) ATTR_ALWAYS_INLINE;
- static inline void USB_Device_EnableDeviceAddress(void)
+ 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);
}