X-Git-Url: http://git.linex4red.de/pub/lufa.git/blobdiff_plain/85f39a58c5cc885bd1cb79b357ec570ca04776d3..f10126a95e528a04b4ec6be1d0fc30be4fbb7e98:/Demos/Host/LowLevel/AudioInputHost/ConfigDescriptor.c diff --git a/Demos/Host/LowLevel/AudioInputHost/ConfigDescriptor.c b/Demos/Host/LowLevel/AudioInputHost/ConfigDescriptor.c index 589012aaa..0ce054f34 100644 --- a/Demos/Host/LowLevel/AudioInputHost/ConfigDescriptor.c +++ b/Demos/Host/LowLevel/AudioInputHost/ConfigDescriptor.c @@ -53,7 +53,7 @@ uint8_t StreamingEndpointAddress = 0; * * This routine searches for a Streaming Audio interface descriptor containing a valid Isochronous audio endpoint. * - * \return An error code from the \ref RNDISHost_GetConfigDescriptorDataCodes_t enum. + * \return An error code from the \ref AudioHost_GetConfigDescriptorDataCodes_t enum. */ uint8_t ProcessConfigurationDescriptor(void) { @@ -92,7 +92,7 @@ uint8_t ProcessConfigurationDescriptor(void) { /* Find a new Audio Control interface if the current one doesn't contain a compatible streaming interface */ if (USB_GetNextDescriptorComp(&CurrConfigBytesRem, &CurrConfigLocation, - DComp_NextAudioControlInterface) != DESCRIPTOR_SEARCH_COMP_Found) + DComp_NextAudioControlInterface) != DESCRIPTOR_SEARCH_COMP_Found) { /* Descriptor not found, error out */ return NoCompatibleInterfaceFound; @@ -103,7 +103,7 @@ uint8_t ProcessConfigurationDescriptor(void) /* Find the next Audio Streaming interface within that Audio Control interface */ if (USB_GetNextDescriptorComp(&CurrConfigBytesRem, &CurrConfigLocation, - DComp_NextAudioStreamInterface) != DESCRIPTOR_SEARCH_COMP_Found) + DComp_NextAudioStreamInterface) != DESCRIPTOR_SEARCH_COMP_Found) { /* Descriptor not found, error out */ return NoCompatibleInterfaceFound;