aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/LowLevel/JoystickHostWithParser/ConfigDescriptor.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-11-13 10:07:25 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-11-13 10:07:25 +0000
commite625fd6df33ab2112779728622a717589f0b8417 (patch)
treee10d4c5a8019c4c4f4e4bb169d03a9d49ab445b9 /Demos/Host/LowLevel/JoystickHostWithParser/ConfigDescriptor.c
parent2626ecb261e3cac22c602a92034b32c4e6d2be87 (diff)
downloadlufa-e625fd6df33ab2112779728622a717589f0b8417.tar.gz
lufa-e625fd6df33ab2112779728622a717589f0b8417.tar.bz2
lufa-e625fd6df33ab2112779728622a717589f0b8417.zip
Corrected the name of the misnamed USB_GetDeviceConfigDescriptor() function to USB_Host_GetDeviceConfigDescriptor().
Diffstat (limited to 'Demos/Host/LowLevel/JoystickHostWithParser/ConfigDescriptor.c')
-rw-r--r--Demos/Host/LowLevel/JoystickHostWithParser/ConfigDescriptor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Host/LowLevel/JoystickHostWithParser/ConfigDescriptor.c b/Demos/Host/LowLevel/JoystickHostWithParser/ConfigDescriptor.c
index 758db8de2..81a0ba583 100644
--- a/Demos/Host/LowLevel/JoystickHostWithParser/ConfigDescriptor.c
+++ b/Demos/Host/LowLevel/JoystickHostWithParser/ConfigDescriptor.c
@@ -52,7 +52,7 @@ uint8_t ProcessConfigurationDescriptor(void)
uint16_t CurrConfigBytesRem;
/* Retrieve the entire configuration descriptor into the allocated buffer */
- switch (USB_GetDeviceConfigDescriptor(1, &CurrConfigBytesRem, ConfigDescriptorData, sizeof(ConfigDescriptorData)))
+ switch (USB_Host_GetDeviceConfigDescriptor(1, &CurrConfigBytesRem, ConfigDescriptorData, sizeof(ConfigDescriptorData)))
{
case HOST_GETCONFIG_Successful:
break;