From 97143bf81480d3f642e33684349c601d5cd0b1ae Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Wed, 21 Jul 2010 14:00:51 +0000 Subject: Add missing const qualifiers to class drivers. Indent core library function parameters so that there is only one parameter per line, to increase readability. --- LUFA/Drivers/Board/EVK527/Dataflash.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'LUFA/Drivers/Board/EVK527/Dataflash.h') diff --git a/LUFA/Drivers/Board/EVK527/Dataflash.h b/LUFA/Drivers/Board/EVK527/Dataflash.h index 034ee2b4e..4f25d6eb2 100644 --- 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 */ - 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)); -- cgit v1.2.3