Fixed bug 3088776.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.0.x@2261 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2010-10-16 17:25:15 +00:00
parent c0398f60ed
commit f545104755
3 changed files with 4 additions and 2 deletions

View File

@ -158,7 +158,7 @@ static void set_error(SerialDriver *sdp, AT91_REG csr) {
chSysUnlockFromIsr(); chSysUnlockFromIsr();
} }
#if defined(__GNU__) #if defined(__GNUC__)
__attribute__((noinline)) __attribute__((noinline))
#endif #endif
#if !USE_SAM7_DBGU_UART #if !USE_SAM7_DBGU_UART

View File

@ -127,7 +127,7 @@ static void set_error(SerialDriver *sdp, IOREG32 err) {
chSysUnlockFromIsr(); chSysUnlockFromIsr();
} }
#if defined(__GNU__) #if defined(__GNUC__)
__attribute__((noinline)) __attribute__((noinline))
#endif #endif
/** /**

View File

@ -59,6 +59,8 @@
***************************************************************************** *****************************************************************************
*** 2.0.6 *** *** 2.0.6 ***
- FIX: Fixed wrong macro check in LPC214x and AT91SAM7 serial drivers (bug
3088776).
- FIX: Fixed non functioning option SPI_USE_MUTUAL_EXCLUSION=FALSE (bug - FIX: Fixed non functioning option SPI_USE_MUTUAL_EXCLUSION=FALSE (bug
3084764). 3084764).
- FIX: Fixed wrong macro check in STM32 serial support (but 3078891). - FIX: Fixed wrong macro check in STM32 serial support (but 3078891).