Fixed bug 3088776.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2260 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
c6b79eda52
commit
0cf7b512cb
|
@ -151,7 +151,7 @@ static void set_error(SerialDriver *sdp, AT91_REG csr) {
|
|||
chSysUnlockFromIsr();
|
||||
}
|
||||
|
||||
#if defined(__GNU__)
|
||||
#if defined(__GNUC__)
|
||||
__attribute__((noinline))
|
||||
#endif
|
||||
#if !USE_SAM7_DBGU_UART
|
||||
|
|
|
@ -120,7 +120,7 @@ static void set_error(SerialDriver *sdp, IOREG32 err) {
|
|||
chSysUnlockFromIsr();
|
||||
}
|
||||
|
||||
#if defined(__GNU__)
|
||||
#if defined(__GNUC__)
|
||||
__attribute__((noinline))
|
||||
#endif
|
||||
/**
|
||||
|
@ -128,7 +128,6 @@ __attribute__((noinline))
|
|||
* @note Tries hard to clear all the pending interrupt sources, we dont want
|
||||
* to go through the whole ISR and have another interrupt soon after.
|
||||
*
|
||||
* @param[in] u pointer to an UART I/O block
|
||||
* @param[in] sdp communication channel associated to the UART
|
||||
*/
|
||||
static void serve_interrupt(SerialDriver *sdp) {
|
||||
|
|
|
@ -63,6 +63,8 @@
|
|||
*****************************************************************************
|
||||
|
||||
*** 2.1.2 ***
|
||||
- FIX: Fixed wrong macro check in LPC214x and AT91SAM7 serial drivers (bug
|
||||
3088776)(backported to 2.0.6).
|
||||
- FIX: Fixed non functioning option SPI_USE_MUTUAL_EXCLUSION=FALSE (bug
|
||||
3084764)(backported to 2.0.6).
|
||||
- FIX: Fixed wrong macro check in STM32 serial support (bug 3078891)(backported
|
||||
|
|
Loading…
Reference in New Issue