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
/
BENITO
/
LEDs.h
diff --git
a/LUFA/Drivers/Board/BENITO/LEDs.h
b/LUFA/Drivers/Board/BENITO/LEDs.h
index
ea3691f
..
37c1387
100644
(file)
--- a/
LUFA/Drivers/Board/BENITO/LEDs.h
+++ b/
LUFA/Drivers/Board/BENITO/LEDs.h
@@
-101,7
+101,8
@@
PORTC = ((PORTC | LEDS_ALL_LEDS) & ~LEDMask);
}
PORTC = ((PORTC | 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)
{
PORTC = ((PORTC | ActiveMask) & ~LEDMask);
}
{
PORTC = ((PORTC | ActiveMask) & ~LEDMask);
}