git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4002 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2012-02-29 16:28:33 +00:00
parent afb884d89c
commit 8f51084625
1 changed files with 2 additions and 4 deletions

View File

@ -118,9 +118,8 @@ static err_t low_level_output(struct netif *netif, struct pbuf *p) {
#endif
/* Iterates through the pbuf chain. */
for(q = p; q != NULL; q = q->next) {
for(q = p; q != NULL; q = q->next)
macWriteTransmitDescriptor(&td, (uint8_t *)q->payload, (size_t)q->len);
}
macReleaseTransmitDescriptor(&td);
#if ETH_PAD_SIZE
@ -158,9 +157,8 @@ static struct pbuf *low_level_input(struct netif *netif) {
#endif
/* Iterates through the pbuf chain. */
for(q = p; q != NULL; q = q->next) {
for(q = p; q != NULL; q = q->next)
macReadReceiveDescriptor(&rd, (uint8_t *)q->payload, (size_t)q->len);
}
macReleaseReceiveDescriptor(&rd);
#if ETH_PAD_SIZE