diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-08-28 01:40:36 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-08-28 01:40:36 +0000 |
commit | 3b898ae17823033c25c672d0b0001c4f1610fcd0 (patch) | |
tree | 99747d03f1fdcc5872fa1bb71cfc03b1e3fee8f0 /LUFA/Drivers/USB/Class/Host | |
parent | a233109909f0e8d3cf578733f088a20474b3c43f (diff) | |
download | lufa-3b898ae17823033c25c672d0b0001c4f1610fcd0.tar.gz lufa-3b898ae17823033c25c672d0b0001c4f1610fcd0.tar.bz2 lufa-3b898ae17823033c25c672d0b0001c4f1610fcd0.zip |
Remove redundant prototype for Audio_Host_StartStopStreaming() and Audio_Host_GetSetEndpointProperty(). Update host mode Audio class inline functions to prevent unused parameter warnings.
Diffstat (limited to 'LUFA/Drivers/USB/Class/Host')
-rw-r--r-- | LUFA/Drivers/USB/Class/Host/Audio.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/LUFA/Drivers/USB/Class/Host/Audio.h b/LUFA/Drivers/USB/Class/Host/Audio.h index 2c78b4113..310d21c08 100644 --- a/LUFA/Drivers/USB/Class/Host/Audio.h +++ b/LUFA/Drivers/USB/Class/Host/Audio.h @@ -146,8 +146,6 @@ */ uint8_t Audio_Host_StartStopStreaming(USB_ClassInfo_Audio_Host_t* const AudioInterfaceInfo, const bool EnableStreaming) ATTR_NON_NULL_PTR_ARG(1); - uint8_t Audio_Host_StartStopStreaming(USB_ClassInfo_Audio_Host_t* const AudioInterfaceInfo, - const bool EnableStreaming); /** Gets or sets the specified property of a streaming audio class endpoint that is bound to a pipe in the given * class instance. @@ -169,12 +167,6 @@ const uint8_t EndpointControl, const uint16_t DataLength, void* const Data) ATTR_NON_NULL_PTR_ARG(1) ATTR_NON_NULL_PTR_ARG(6); - uint8_t Audio_Host_GetSetEndpointProperty(USB_ClassInfo_Audio_Host_t* const AudioInterfaceInfo, - const uint8_t DataPipeIndex, - const uint8_t EndpointProperty, - const uint8_t EndpointControl, - const uint16_t DataLength, - void* const Data); /* Inline Functions: */ /** General management task for a given Audio host class interface, required for the correct operation of @@ -338,6 +330,8 @@ static inline void Audio_Host_WriteSample8(USB_ClassInfo_Audio_Host_t* const AudioInterfaceInfo, const int8_t Sample) { + (void)AudioInterfaceInfo; + Pipe_Write_8(Sample); if (!(Pipe_IsReadWriteAllowed())) @@ -362,6 +356,8 @@ static inline void Audio_Host_WriteSample16(USB_ClassInfo_Audio_Host_t* const AudioInterfaceInfo, const int16_t Sample) { + (void)AudioInterfaceInfo; + Pipe_Write_16_LE(Sample); if (!(Pipe_IsReadWriteAllowed())) @@ -386,6 +382,8 @@ static inline void Audio_Host_WriteSample24(USB_ClassInfo_Audio_Host_t* const AudioInterfaceInfo, const int32_t Sample) { + (void)AudioInterfaceInfo; + Pipe_Write_16_LE(Sample); Pipe_Write_8(Sample >> 16); |