From 21b30a200977bd397704eab778bc52e921b2f3e3 Mon Sep 17 00:00:00 2001 From: Uwe Kleine-König Date: Wed, 11 Jan 2017 16:59:16 +0100 Subject: net/phy: marvell: rename phy_driver array to match Linux driver MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Uwe Kleine-König Signed-off-by: Sascha Hauer --- drivers/net/phy/marvell.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'drivers') diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c index c4d9c7fe49..ee95c2db57 100644 --- a/drivers/net/phy/marvell.c +++ b/drivers/net/phy/marvell.c @@ -237,7 +237,7 @@ static int m88e1318s_config_init(struct phy_device *phydev) return m88e1121_config_init(phydev); } -static struct phy_driver marvell_phys[] = { +static struct phy_driver marvell_drivers[] = { { .phy_id = MARVELL_PHY_ID_88E1121R, .phy_id_mask = MARVELL_PHY_ID_MASK, @@ -278,6 +278,7 @@ static struct phy_driver marvell_phys[] = { static int __init marvell_phy_init(void) { - return phy_drivers_register(marvell_phys, ARRAY_SIZE(marvell_phys)); + return phy_drivers_register(marvell_drivers, + ARRAY_SIZE(marvell_drivers)); } fs_initcall(marvell_phy_init); -- cgit v1.2.3