2005-08-12 Phil Torre <ptorre@zetron.com>

PR 816/bsps
	* mpc8xx/include/mpc8xx.h: The struct which describes SCC Ethernet mode
	parameters (m8xxSCCENparms_t) does not match the hardware: members
	taddr_h and taddr_l are transposed. When loading new multicast group
	addresses into the hash table, the wrong hash bit is set.
This commit is contained in:
Joel Sherrill
2005-08-12 23:44:27 +00:00
parent a605cecde3
commit db0cf9fc38
2 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,11 @@
2005-08-12 Phil Torre <ptorre@zetron.com>
PR 816/bsps
* mpc8xx/include/mpc8xx.h: The struct which describes SCC Ethernet mode
parameters (m8xxSCCENparms_t) does not match the hardware: members
taddr_h and taddr_l are transposed. When loading new multicast group
addresses into the hash table, the wrong hash bit is set.
2005-08-05 Ralf Corsepius <ralf.corsepius@rtems.org> 2005-08-05 Ralf Corsepius <ralf.corsepius@rtems.org>
* Makefile.am: Unconditionally initialize include_libcpu_HEADERS. * Makefile.am: Unconditionally initialize include_libcpu_HEADERS.

View File

@@ -506,8 +506,8 @@ typedef struct m8xxSCCENparms_ {
uint16_t iaddr3; uint16_t iaddr3;
uint16_t iaddr4; uint16_t iaddr4;
uint16_t _boff_cnt; uint16_t _boff_cnt;
uint16_t taddr_l;
uint16_t taddr_m; uint16_t taddr_m;
uint16_t taddr_l;
uint16_t taddr_h; uint16_t taddr_h;
} ethernet; } ethernet;
} un; } un;