From 334f70aa80ecfa05a42c6006cb49d14f05555fa8 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Thu, 11 Apr 2013 17:39:00 +0000 Subject: Add some missing function attributes. --- LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h') diff --git a/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h b/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h index c0a9067b7..80de7da80 100644 --- a/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h +++ b/LUFA/Drivers/Peripheral/AVR8/TWI_AVR8.h @@ -201,8 +201,10 @@ * \param[in] Prescale Prescaler to use when determining the bus frequency, a \c TWI_BIT_PRESCALE_* value. * \param[in] BitLength Length of the bits sent on the bus. */ - static inline void TWI_Init(const uint8_t Prescale, const uint8_t BitLength) ATTR_ALWAYS_INLINE; - static inline void TWI_Init(const uint8_t Prescale, const uint8_t BitLength) + static inline void TWI_Init(const uint8_t Prescale, + const uint8_t BitLength) ATTR_ALWAYS_INLINE; + static inline void TWI_Init(const uint8_t Prescale, + const uint8_t BitLength) { TWCR |= (1 << TWEN); TWSR = Prescale; -- cgit v1.2.3