1 --- a/drivers/net/gianfar.c
2 +++ b/drivers/net/gianfar.c
3 @@ -334,7 +334,14 @@ static int gfar_probe(struct of_device *
4 /* We need to delay at least 3 TX clocks */
7 - tempval = (MACCFG1_TX_FLOW | MACCFG1_RX_FLOW);
9 + * Do not enable flow control on chips earlier than rev 1.1,
10 + * because of the eTSEC27 erratum
13 + if (mfspr(SPRN_SVR) & 0xffff >= 0x0011)
14 + tempval = (MACCFG1_TX_FLOW | MACCFG1_RX_FLOW);
16 gfar_write(&priv->regs->maccfg1, tempval);
18 /* Initialize MACCFG2. */