aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-08-18 14:54:37 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-08-18 14:54:37 +0000
commit1cb60c1214c82ac117a7ede9e29351e902ee7c35 (patch)
treedf4d07eaaa9fb6eeff71e62039d1ac78e41ffff8 /LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c
parent8d8e5c06b9c6c7410ec6a08c530dfaf6e4bf213f (diff)
downloadlufa-1cb60c1214c82ac117a7ede9e29351e902ee7c35.tar.gz
lufa-1cb60c1214c82ac117a7ede9e29351e902ee7c35.tar.bz2
lufa-1cb60c1214c82ac117a7ede9e29351e902ee7c35.zip
Spell-check latest trunk source code.
Diffstat (limited to 'LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c')
-rw-r--r--LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c b/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c
index 09d4ab620..86df5c825 100644
--- a/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c
+++ b/LUFA/Drivers/USB/Core/XMEGA/USBController_XMEGA.c
@@ -76,7 +76,7 @@ void USB_Init(
USB.CAL1 = pgm_read_byte(offsetof(NVM_PROD_SIGNATURES_t, USBCAL1));
NVM.CMD = 0;
- /* Ugly workaround to ensure an aligned table, since __BIGGEST_ALIGNMENT__ == 1 for the 8-bit AVR-GCC toochain */
+ /* Ugly workaround to ensure an aligned table, since __BIGGEST_ALIGNMENT__ == 1 for the 8-bit AVR-GCC toolchain */
USB.EPPTR = ((intptr_t)&USB_EndpointTable[1] & ~(1 << 0));
USB.CTRLA = (USB_STFRNUM_bm | ((ENDPOINT_TOTAL_ENDPOINTS - 1) << USB_MAXEP_gp));