aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/ClassDriver/VirtualSerialMassStorage
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2018-06-17 16:06:07 +1000
committerDean Camera <dean@fourwalledcubicle.com>2018-06-17 16:06:07 +1000
commita08a02481ba9e68933ad0b89483f5328767df9f3 (patch)
tree8a14646a4ff57c877bd4d83416b9b65cd9b10149 /Demos/Device/ClassDriver/VirtualSerialMassStorage
parentd8e0d67caefa312970787645180ec5db2eff92cb (diff)
downloadlufa-a08a02481ba9e68933ad0b89483f5328767df9f3.tar.gz
lufa-a08a02481ba9e68933ad0b89483f5328767df9f3.tar.bz2
lufa-a08a02481ba9e68933ad0b89483f5328767df9f3.zip
Fix mismatched aliased event and event stub function prototypes.
Diffstat (limited to 'Demos/Device/ClassDriver/VirtualSerialMassStorage')
-rw-r--r--Demos/Device/ClassDriver/VirtualSerialMassStorage/VirtualSerialMassStorage.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Demos/Device/ClassDriver/VirtualSerialMassStorage/VirtualSerialMassStorage.c b/Demos/Device/ClassDriver/VirtualSerialMassStorage/VirtualSerialMassStorage.c
index 692578c1a..5410eb11f 100644
--- a/Demos/Device/ClassDriver/VirtualSerialMassStorage/VirtualSerialMassStorage.c
+++ b/Demos/Device/ClassDriver/VirtualSerialMassStorage/VirtualSerialMassStorage.c
@@ -238,6 +238,8 @@ void EVENT_CDC_Device_ControLineStateChanged(USB_ClassInfo_CDC_Device_t *const C
in the pending data from the USB endpoints.
*/
bool HostReady = (CDCInterfaceInfo->State.ControlLineStates.HostToDevice & CDC_CONTROL_LINE_OUT_DTR) != 0;
+
+ (void)HostReady;
}
/** Mass Storage class driver callback function the reception of SCSI commands from the host, which must be processed.