aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-09-21 23:40:05 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-09-21 23:40:05 +0000
commit022fa26b43f062ca6e4b23c64ec2d0d0bab7e377 (patch)
tree8e803d83ebf0e5e7e7d7fda120203a1a6b184540 /LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h
parentb5682f2c4476c368589c084b374bcdd997e85cdb (diff)
downloadlufa-022fa26b43f062ca6e4b23c64ec2d0d0bab7e377.tar.gz
lufa-022fa26b43f062ca6e4b23c64ec2d0d0bab7e377.tar.bz2
lufa-022fa26b43f062ca6e4b23c64ec2d0d0bab7e377.zip
Fix missing C++ linkage command in ArchitectureSpecific.h.
Fix missing closing brace in an Endpoint function for the UC3 targets.
Diffstat (limited to 'LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h')
-rw-r--r--LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h b/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h
index eefd9cfcd..d38df8b48 100644
--- a/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h
+++ b/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h
@@ -305,7 +305,7 @@
((uint32_t)Type << AVR32_USBB_EPTYPE_OFFSET) |
((uint32_t)(Direction ? AVR32_USBB_UECFG0_EPDIR_MASK : 0) |
((uint32_t)Banks << AVR32_USBB_EPBK_OFFSET) |
- Endpoint_BytesToEPSizeMask(Size)));
+ Endpoint_BytesToEPSizeMask(Size))));
}
/** Indicates the number of bytes currently stored in the current endpoint's selected bank.