fec: Do not access unexisting register in Coldfire
Commit 55cd48c821
("net: fec: stop the "rcv is not +last, " error
messages") introduces a write to a register that does not exist in
Coldfire.
Move the FEC_FTRL register access inside the FEC_QUIRK_HAS_RACC 'if' block,
so that we guarantee it will not be used on Coldfire CPUs.
Reported-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9bd9ddb7f8
commit
32867fcc0e
|
@ -943,8 +943,8 @@ fec_restart(struct net_device *ndev)
|
||||||
else
|
else
|
||||||
val &= ~FEC_RACC_OPTIONS;
|
val &= ~FEC_RACC_OPTIONS;
|
||||||
writel(val, fep->hwp + FEC_RACC);
|
writel(val, fep->hwp + FEC_RACC);
|
||||||
|
writel(PKT_MAXBUF_SIZE, fep->hwp + FEC_FTRL);
|
||||||
}
|
}
|
||||||
writel(PKT_MAXBUF_SIZE, fep->hwp + FEC_FTRL);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue