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>

authored by Valentine Barshak and committed by Jeff Garzik 63b6cad7 4696c3c4

+1 -1
+1 -1
drivers/net/ibm_newemac/core.c
··· 2442 2442 if (emac_read_uint_prop(np, "tah-device", &dev->tah_ph, 0)) 2443 2443 dev->tah_ph = 0; 2444 2444 if (emac_read_uint_prop(np, "tah-channel", &dev->tah_port, 0)) 2445 - dev->tah_ph = 0; 2445 + dev->tah_port = 0; 2446 2446 if (emac_read_uint_prop(np, "mdio-device", &dev->mdio_ph, 0)) 2447 2447 dev->mdio_ph = 0; 2448 2448 if (emac_read_uint_prop(np, "zmii-device", &dev->zmii_ph, 0))