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:55 +00:00
parent 28e7d30f34
commit 3424a93ace
2 changed files with 10 additions and 2 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.
2004-11-22 Jennifer Averett <jennifer@OARcorp.com> 2004-11-22 Jennifer Averett <jennifer@OARcorp.com>
PR 581/bsps PR 581/bsps

View File

@@ -506,9 +506,9 @@ typedef struct m8xxSCCENparms_ {
rtems_unsigned16 iaddr3; rtems_unsigned16 iaddr3;
rtems_unsigned16 iaddr4; rtems_unsigned16 iaddr4;
rtems_unsigned16 _boff_cnt; rtems_unsigned16 _boff_cnt;
rtems_unsigned16 taddr_l;
rtems_unsigned16 taddr_m;
rtems_unsigned16 taddr_h; rtems_unsigned16 taddr_h;
rtems_unsigned16 taddr_m;
rtems_unsigned16 taddr_l;
} ethernet; } ethernet;
} un; } un;
} m8xxSCCENparms_t; } m8xxSCCENparms_t;