Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Anton Vorontsov and committed by
David S. Miller
bb4f92b3 039a6f6a

+1 -1
+1 -1
drivers/net/ucc_geth.c
··· 3641 3641 if (err) 3642 3642 return -1; 3643 3643 3644 - uec_mdio_bus_name(bus_name, mdio); 3644 + fsl_pq_mdio_bus_name(bus_name, mdio); 3645 3645 snprintf(ug_info->phy_bus_id, sizeof(ug_info->phy_bus_id), 3646 3646 "%s:%02x", bus_name, *prop); 3647 3647 }