Changeset 1f25c77 in rtems
- Timestamp:
- 10/09/11 15:37:53 (12 years ago)
- Branches:
- 4.11, 5, master
- Children:
- a32a86e
- Parents:
- 764e0a75
- Location:
- c/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ChangeLog
r764e0a75 r1f25c77 1 2011-10-09 Ralf Corsépius <ralf.corsepius@rtems.org> 2 3 * libchip/network/greth.c, libchip/network/open_eth.c 4 libchip/network/sonic.c: Eliminate evil typecasts. 5 * libchip/network/greth.h, libchip/network/open_eth.h, 6 libchip/network/sonic.h: Use void* for addresses. 7 1 8 2011-08-30 Sebastian Huber <sebastian.huber@embedded-brains.de> 2 9 -
c/src/libchip/network/greth.c
r764e0a75 r1f25c77 969 969 970 970 sc->acceptBroadcast = !config->ignore_broadcast; 971 sc->regs = (void *)chip->base_address;971 sc->regs = chip->base_address; 972 972 sc->vector = chip->vector; 973 973 sc->txbufs = chip->txd_count; -
c/src/libchip/network/greth.h
r764e0a75 r1f25c77 18 18 19 19 typedef struct { 20 uint32_tbase_address;20 void *base_address; 21 21 uint32_t vector; 22 22 uint32_t txd_count; -
c/src/libchip/network/open_eth.c
r764e0a75 r1f25c77 735 735 736 736 sc->acceptBroadcast = !config->ignore_broadcast; 737 sc->regs = (void *)chip->base_address;737 sc->regs = chip->base_address; 738 738 sc->vector = chip->vector; 739 739 sc->txbufs = chip->txd_count; -
c/src/libchip/network/open_eth.h
r764e0a75 r1f25c77 9 9 10 10 typedef struct { 11 uint32_tbase_address;11 void *base_address; 12 12 uint32_t vector; 13 13 uint32_t txd_count; -
c/src/libchip/network/sonic.c
r764e0a75 r1f25c77 1591 1591 sc->acceptBroadcast = !config->ignore_broadcast; 1592 1592 1593 sc->sonic = (void *)chip->base_address;1593 sc->sonic = chip->base_address; 1594 1594 sc->vector = chip->vector; 1595 1595 sc->dcr_value = chip->dcr_value; -
c/src/libchip/network/sonic.h
r764e0a75 r1f25c77 82 82 83 83 typedef struct { 84 uint32_tbase_address;84 void *base_address; 85 85 uint32_t vector; 86 86 uint32_t dcr_value;
Note: See TracChangeset
for help on using the changeset viewer.