aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-10-30 07:09:44 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-10-30 07:09:44 +0000
commitab43251bf926a3ce2ff42cac433dad723452bcb4 (patch)
treec061b1da4636ef151e738a30bf866048caa159bf /LUFA/Drivers/USB/Core
parent028a3c4ab3f73af3c63d05379002150c8ccd4982 (diff)
downloadlufa-ab43251bf926a3ce2ff42cac433dad723452bcb4.tar.gz
lufa-ab43251bf926a3ce2ff42cac433dad723452bcb4.tar.bz2
lufa-ab43251bf926a3ce2ff42cac433dad723452bcb4.zip
Minor documentation fixes.
Diffstat (limited to 'LUFA/Drivers/USB/Core')
-rw-r--r--LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.h b/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.h
index da8778024..4c3d99911 100644
--- a/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.h
+++ b/LUFA/Drivers/USB/Core/AVR8/USBController_AVR8.h
@@ -352,9 +352,9 @@
static inline void USB_REG_On(void)
{
#if defined(USB_SERIES_4_AVR) || defined(USB_SERIES_6_AVR) || defined(USB_SERIES_7_AVR)
- UHWCON |= (1 << UVREGE);
+ UHWCON |= (1 << UVREGE);
#else
- REGCR &= ~(1 << REGDIS);
+ REGCR &= ~(1 << REGDIS);
#endif
}
@@ -362,9 +362,9 @@
static inline void USB_REG_Off(void)
{
#if defined(USB_SERIES_4_AVR) || defined(USB_SERIES_6_AVR) || defined(USB_SERIES_7_AVR)
- UHWCON &= ~(1 << UVREGE);
+ UHWCON &= ~(1 << UVREGE);
#else
- REGCR |= (1 << REGDIS);
+ REGCR |= (1 << REGDIS);
#endif
}
@@ -372,38 +372,38 @@
static inline void USB_OTGPAD_On(void) ATTR_ALWAYS_INLINE;
static inline void USB_OTGPAD_On(void)
{
- USBCON |= (1 << OTGPADE);
+ USBCON |= (1 << OTGPADE);
}
static inline void USB_OTGPAD_Off(void) ATTR_ALWAYS_INLINE;
static inline void USB_OTGPAD_Off(void)
{
- USBCON &= ~(1 << OTGPADE);
+ USBCON &= ~(1 << OTGPADE);
}
#endif
static inline void USB_CLK_Freeze(void) ATTR_ALWAYS_INLINE;
static inline void USB_CLK_Freeze(void)
{
- USBCON |= (1 << FRZCLK);
+ USBCON |= (1 << FRZCLK);
}
static inline void USB_CLK_Unfreeze(void) ATTR_ALWAYS_INLINE;
static inline void USB_CLK_Unfreeze(void)
{
- USBCON &= ~(1 << FRZCLK);
+ USBCON &= ~(1 << FRZCLK);
}
static inline void USB_Controller_Enable(void) ATTR_ALWAYS_INLINE;
static inline void USB_Controller_Enable(void)
{
- USBCON |= (1 << USBE);
+ USBCON |= (1 << USBE);
}
static inline void USB_Controller_Disable(void) ATTR_ALWAYS_INLINE;
static inline void USB_Controller_Disable(void)
{
- USBCON &= ~(1 << USBE);
+ USBCON &= ~(1 << USBE);
}
static inline void USB_Controller_Reset(void) ATTR_ALWAYS_INLINE;