summaryrefslogtreecommitdiffstats
path: root/drivers/net/ucc_geth.c
diff options
context:
space:
mode:
authorAnton Vorontsov2009-03-24 20:06:46 +0100
committerDavid S. Miller2009-03-24 20:06:46 +0100
commitbb4f92b3a33bfc31f55098da85be44702bea2d16 (patch)
treec2abca8db14a52bd126590e437a7ea218922c4be /drivers/net/ucc_geth.c
parentucc_geth: Fix merge error. (diff)
downloadkernel-qcow2-linux-bb4f92b3a33bfc31f55098da85be44702bea2d16.tar.gz
kernel-qcow2-linux-bb4f92b3a33bfc31f55098da85be44702bea2d16.tar.xz
kernel-qcow2-linux-bb4f92b3a33bfc31f55098da85be44702bea2d16.zip
ucc_geth: Fix build breakage caused by a merge
This patch fixes following build error: CC ucc_geth.o ucc_geth.c: In function 'ucc_geth_probe': ucc_geth.c:3644: error: implicit declaration of function 'uec_mdio_bus_name' make[2]: *** [ucc_geth.o] Error 1 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ucc_geth.c')
-rw-r--r--drivers/net/ucc_geth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ucc_geth.c b/drivers/net/ucc_geth.c
index 5f866e276dd1..0b675127e83b 100644
--- a/drivers/net/ucc_geth.c
+++ b/drivers/net/ucc_geth.c
@@ -3641,7 +3641,7 @@ static int ucc_geth_probe(struct of_device* ofdev, const struct of_device_id *ma
if (err)
return -1;
- uec_mdio_bus_name(bus_name, mdio);
+ fsl_pq_mdio_bus_name(bus_name, mdio);
snprintf(ug_info->phy_bus_id, sizeof(ug_info->phy_bus_id),
"%s:%02x", bus_name, *prop);
}