projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add missing const qualifiers to class drivers.
[pub/USBasp.git]
/
LUFA
/
Drivers
/
Board
/
USBKEY
/
LEDs.h
diff --git
a/LUFA/Drivers/Board/USBKEY/LEDs.h
b/LUFA/Drivers/Board/USBKEY/LEDs.h
index
d0577bf
..
86981f5
100644
(file)
--- a/
LUFA/Drivers/Board/USBKEY/LEDs.h
+++ b/
LUFA/Drivers/Board/USBKEY/LEDs.h
@@
-109,7
+109,8
@@
PORTD = ((PORTD & ~LEDS_ALL_LEDS) | LEDMask);
}
PORTD = ((PORTD & ~LEDS_ALL_LEDS) | LEDMask);
}
- static inline void LEDs_ChangeLEDs(const uint8_t LEDMask, const uint8_t ActiveMask)
+ static inline void LEDs_ChangeLEDs(const uint8_t LEDMask,
+ const uint8_t ActiveMask)
{
PORTD = ((PORTD & ~LEDMask) | ActiveMask);
}
{
PORTD = ((PORTD & ~LEDMask) | ActiveMask);
}