aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ibm_newemac
diff options
context:
space:
mode:
authorValentine Barshak <vbarshak@ru.mvista.com>2007-12-05 11:14:31 +1100
committerJeff Garzik <jeff@garzik.org>2007-12-07 15:09:06 -0500
commit63b6cad795e0a34e8670291943df8a6f653c1931 (patch)
treeb021afaefd16f1ffcc5a6a801ba9190cf49d545a /drivers/net/ibm_newemac
parentibm_newemac: Correct opb_bus_freq value (diff)
downloadlinux-dev-63b6cad795e0a34e8670291943df8a6f653c1931.tar.xz
linux-dev-63b6cad795e0a34e8670291943df8a6f653c1931.zip
ibm_newemac: Fix typo reading TAH channel info
This patch fixes a typo in ibm_newemac/core.c (tah_port should be used instead of tah_ph) Signed-off-by: Valentine Barshak <vbarshak@ru.mvista.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/ibm_newemac')
-rw-r--r--drivers/net/ibm_newemac/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ibm_newemac/core.c b/drivers/net/ibm_newemac/core.c
index 9642931c66ea..7a620e5aaf38 100644
--- a/drivers/net/ibm_newemac/core.c
+++ b/drivers/net/ibm_newemac/core.c
@@ -2442,7 +2442,7 @@ static int __devinit emac_init_config(struct emac_instance *dev)
if (emac_read_uint_prop(np, "tah-device", &dev->tah_ph, 0))
dev->tah_ph = 0;
if (emac_read_uint_prop(np, "tah-channel", &dev->tah_port, 0))
- dev->tah_ph = 0;
+ dev->tah_port = 0;
if (emac_read_uint_prop(np, "mdio-device", &dev->mdio_ph, 0))
dev->mdio_ph = 0;
if (emac_read_uint_prop(np, "zmii-device", &dev->zmii_ph, 0))