aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Class/Device/AudioClassDevice.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-03-15 19:11:26 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-03-15 19:11:26 +0000
commitf87aec2264087c5e72bb013451540950f2a076f8 (patch)
tree13ba50475cba2fe1cd39274142308ad93b185527 /LUFA/Drivers/USB/Class/Device/AudioClassDevice.c
parent77adb2ba529973b99383fd4571f67eede3afcda4 (diff)
downloadlufa-f87aec2264087c5e72bb013451540950f2a076f8.tar.gz
lufa-f87aec2264087c5e72bb013451540950f2a076f8.tar.bz2
lufa-f87aec2264087c5e72bb013451540950f2a076f8.zip
Fixed incorrect call to the user callback CALLBACK_Audio_Device_GetSetInterfaceProperty() in the Audio Class device driver (thanks to Tiit Ratsep).
Diffstat (limited to 'LUFA/Drivers/USB/Class/Device/AudioClassDevice.c')
-rw-r--r--LUFA/Drivers/USB/Class/Device/AudioClassDevice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Drivers/USB/Class/Device/AudioClassDevice.c b/LUFA/Drivers/USB/Class/Device/AudioClassDevice.c
index 4f3cfd62d..7a1f4b206 100644
--- a/LUFA/Drivers/USB/Class/Device/AudioClassDevice.c
+++ b/LUFA/Drivers/USB/Class/Device/AudioClassDevice.c
@@ -125,7 +125,7 @@ void Audio_Device_ProcessControlRequest(USB_ClassInfo_Audio_Device_t* const Audi
Endpoint_ClearIN();
CALLBACK_Audio_Device_GetSetInterfaceProperty(AudioInterfaceInfo, Property, Entity,
- Parameter, NULL, NULL);
+ Parameter, &ValueLength, Value);
}
}