diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-01-30 23:12:06 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-01-30 23:12:06 +0000 |
commit | 43b9d552bb0a32c5cd5f9fa72a8cb3c871ad5ef3 (patch) | |
tree | 3eec94c1a0d57fb84c0678d10f1012d234e532a7 /LUFA/Drivers/USB | |
parent | 9051d3beb0c5c4ec1e33749d8f806f5492fbe742 (diff) | |
download | lufa-43b9d552bb0a32c5cd5f9fa72a8cb3c871ad5ef3.tar.gz lufa-43b9d552bb0a32c5cd5f9fa72a8cb3c871ad5ef3.tar.bz2 lufa-43b9d552bb0a32c5cd5f9fa72a8cb3c871ad5ef3.zip |
Renamed all driver termination *_ShutDown() functions to the more logical name *_Disable().
Diffstat (limited to 'LUFA/Drivers/USB')
-rw-r--r-- | LUFA/Drivers/USB/LowLevel/USBController.c | 2 | ||||
-rw-r--r-- | LUFA/Drivers/USB/LowLevel/USBController.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Drivers/USB/LowLevel/USBController.c b/LUFA/Drivers/USB/LowLevel/USBController.c index 91f9acd4e..f41b5cc11 100644 --- a/LUFA/Drivers/USB/LowLevel/USBController.c +++ b/LUFA/Drivers/USB/LowLevel/USBController.c @@ -83,7 +83,7 @@ void USB_Init( USB_ResetInterface(); } -void USB_ShutDown(void) +void USB_Disable(void) { USB_INT_DisableAllInterrupts(); USB_INT_ClearAllInterrupts(); diff --git a/LUFA/Drivers/USB/LowLevel/USBController.h b/LUFA/Drivers/USB/LowLevel/USBController.h index 5511fa573..f35c52da9 100644 --- a/LUFA/Drivers/USB/LowLevel/USBController.h +++ b/LUFA/Drivers/USB/LowLevel/USBController.h @@ -292,7 +292,7 @@ * memory, endpoints and pipes. When turned off, no USB functionality can be used until the interface * is restarted with the \ref USB_Init() function. */ - void USB_ShutDown(void); + void USB_Disable(void); /** Resets the interface, when already initialized. This will re-enumerate the device if already connected * to a host, or re-enumerate an already attached device when in host mode. |