Skip to content

Commit a0a32d3

Browse files
Uwe Kleine-Königdavem330
authored andcommitted
net: phy: put genphy_config_init's EXPORT_SYMBOL directly after the function
Commit af6b696 ("net: phy: export genphy_config_init()") introduced this EXPORT_SYMBOL and put it after gen10g_soft_reset() instead of directly after genphy_config_init. Probably this happend when the patch was applied because http://patchwork.ozlabs.org/patch/339622/ looks ok. Signed-off-by: Uwe Kleine-König <[email protected]> Acked-by: Florian Fainelli <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent d0e1a1b commit a0a32d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/phy/phy_device.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1571,13 +1571,13 @@ int genphy_config_init(struct phy_device *phydev)
15711571

15721572
return 0;
15731573
}
1574+
EXPORT_SYMBOL(genphy_config_init);
15741575

15751576
static int gen10g_soft_reset(struct phy_device *phydev)
15761577
{
15771578
/* Do nothing for now */
15781579
return 0;
15791580
}
1580-
EXPORT_SYMBOL(genphy_config_init);
15811581

15821582
static int gen10g_config_init(struct phy_device *phydev)
15831583
{

0 commit comments

Comments
 (0)