aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/LowLevel/CCID
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2018-08-06 20:04:01 +1000
committerDean Camera <dean@fourwalledcubicle.com>2018-08-06 20:04:01 +1000
commitf469eb7745b52029d57636334b2e3f4e511bc968 (patch)
treecfe5f2bc586fd141d416640d08d2e61ceff6fbc3 /Demos/Device/LowLevel/CCID
parent2a057a7209a1a4457306a2bb42894f42a05fffcd (diff)
downloadlufa-f469eb7745b52029d57636334b2e3f4e511bc968.tar.gz
lufa-f469eb7745b52029d57636334b2e3f4e511bc968.tar.bz2
lufa-f469eb7745b52029d57636334b2e3f4e511bc968.zip
Add const qualifiers to class driver callback parameters, fix parameter naming.
Diffstat (limited to 'Demos/Device/LowLevel/CCID')
-rw-r--r--Demos/Device/LowLevel/CCID/CCID.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/Demos/Device/LowLevel/CCID/CCID.h b/Demos/Device/LowLevel/CCID/CCID.h
index d4503597b..46c759c30 100644
--- a/Demos/Device/LowLevel/CCID/CCID.h
+++ b/Demos/Device/LowLevel/CCID/CCID.h
@@ -72,18 +72,18 @@
void SetupHardware(void);
void CCID_Task(void);
- uint8_t CCID_IccPowerOn(uint8_t slot,
- uint8_t* const attr,
- uint8_t* const attrLength,
- uint8_t* const error);
- uint8_t CCID_IccPowerOff(uint8_t slot,
- uint8_t* const error);
- uint8_t CCID_GetSlotStatus(uint8_t slot,
- uint8_t* const error);
- uint8_t CCID_Abort(uint8_t slot,
- uint8_t seq,
- uint8_t* const error);
- bool CCID_CheckStatusNoError(uint8_t status);
+ uint8_t CCID_IccPowerOn(uint8_t Slot,
+ uint8_t* const Attr,
+ uint8_t* const AttrLength,
+ uint8_t* const Error);
+ uint8_t CCID_IccPowerOff(uint8_t Slot,
+ uint8_t* const Error);
+ uint8_t CCID_GetSlotStatus(uint8_t Slot,
+ uint8_t* const Error);
+ uint8_t CCID_Abort(uint8_t Slot,
+ uint8_t Seq,
+ uint8_t* const Error);
+ bool CCID_CheckStatusNoError(uint8_t Status);
void EVENT_USB_Device_Connect(void);
void EVENT_USB_Device_Disconnect(void);