Fixed bug 3598719.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4981 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2012-12-28 10:15:14 +00:00
parent fb1b227383
commit d38b79b7b2
2 changed files with 3 additions and 1 deletions

View File

@ -535,7 +535,7 @@ msg_t mac_lld_get_receive_descriptor(MACDriver *macp,
}
/* Invalid frame found, purging.*/
rdes->rdes0 = STM32_RDES0_OWN;
macp->rxptr = (stm32_eth_rx_descriptor_t *)rdes->rdes3;
rdes = macp->rxptr = (stm32_eth_rx_descriptor_t *)rdes->rdes3;
}
chSysUnlock();

View File

@ -82,6 +82,8 @@
*****************************************************************************
*** 2.5.2 ***
- FIX: Fixed error in STM32 MAC driver degrades performance (bug 3598719)
(backported to 2.4.4).
- FIX: Fixed warning in STM32 ICU driver using IAR compiler (bug 3598177)
(backported to 2.4.3).
- FIX: Fixed wrong SPI path in platform_f105_f107.mk (bug 3598151).