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
/
EVK527
/
Dataflash.h
diff --git
a/LUFA/Drivers/Board/EVK527/Dataflash.h
b/LUFA/Drivers/Board/EVK527/Dataflash.h
index
034ee2b
..
4f25d6e
100644
(file)
--- a/
LUFA/Drivers/Board/EVK527/Dataflash.h
+++ b/
LUFA/Drivers/Board/EVK527/Dataflash.h
@@
-110,7
+110,8
@@
* \param[in] PageAddress Page address within the selected dataflash IC
* \param[in] BufferByte Address within the dataflash's buffer
*/
* \param[in] PageAddress Page address within the selected dataflash IC
* \param[in] BufferByte Address within the dataflash's buffer
*/
- static inline void Dataflash_SendAddressBytes(uint16_t PageAddress, const uint16_t BufferByte)
+ static inline void Dataflash_SendAddressBytes(uint16_t PageAddress,
+ const uint16_t BufferByte)
{
Dataflash_SendByte(PageAddress >> 5);
Dataflash_SendByte((PageAddress << 3) | (BufferByte >> 8));
{
Dataflash_SendByte(PageAddress >> 5);
Dataflash_SendByte((PageAddress << 3) | (BufferByte >> 8));