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 /Demos/Host/ClassDriver/MIDIHost/MIDIHost.c | |
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 'Demos/Host/ClassDriver/MIDIHost/MIDIHost.c')
-rw-r--r-- | Demos/Host/ClassDriver/MIDIHost/MIDIHost.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Host/ClassDriver/MIDIHost/MIDIHost.c b/Demos/Host/ClassDriver/MIDIHost/MIDIHost.c index 4cfaccdc3..b451362a1 100644 --- a/Demos/Host/ClassDriver/MIDIHost/MIDIHost.c +++ b/Demos/Host/ClassDriver/MIDIHost/MIDIHost.c @@ -243,7 +243,7 @@ void EVENT_USB_Host_DeviceEnumerationComplete(void) /** Event handler for the USB_HostError event. This indicates that a hardware error occurred while in host mode. */ void EVENT_USB_Host_HostError(const uint8_t ErrorCode) { - USB_ShutDown(); + USB_Disable(); printf_P(PSTR(ESC_FG_RED "Host Mode Error\r\n" " -- Error Code %d\r\n" ESC_FG_WHITE), ErrorCode); |