A last minute cleanup before submitting the DM9000A patch series yesterday introduced
a bug in reading the rx-status registers in 32bit mode only.
This patch repairs this.
Signed-off-by: Remy Bohmer <linux@bohmer.net>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
static void dm9000_rx_status_32bit(u16 *RxStatus, u16 *RxLen)
{
- u32 tmpdata = DM9000_inl(DM9000_DATA);
+ u32 tmpdata;
DM9000_outb(DM9000_MRCMD, DM9000_IO);
+ tmpdata = DM9000_inl(DM9000_DATA);
*RxStatus = tmpdata;
*RxLen = tmpdata >> 16;
}