Commit 8edf206c authored by Michael Walle's avatar Michael Walle Committed by David S. Miller

net: phy: icplus: drop address operator for functions

Don't sometimes use the address operator and sometimes not. Drop it and
make the code look uniform.
Signed-off-by: default avatarMichael Walle <michael@walle.cc>
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7360a4de
...@@ -336,16 +336,16 @@ static struct phy_driver icplus_driver[] = { ...@@ -336,16 +336,16 @@ static struct phy_driver icplus_driver[] = {
PHY_ID_MATCH_MODEL(IP175C_PHY_ID), PHY_ID_MATCH_MODEL(IP175C_PHY_ID),
.name = "ICPlus IP175C", .name = "ICPlus IP175C",
/* PHY_BASIC_FEATURES */ /* PHY_BASIC_FEATURES */
.config_init = &ip175c_config_init, .config_init = ip175c_config_init,
.config_aneg = &ip175c_config_aneg, .config_aneg = ip175c_config_aneg,
.read_status = &ip175c_read_status, .read_status = ip175c_read_status,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.resume = genphy_resume, .resume = genphy_resume,
}, { }, {
PHY_ID_MATCH_MODEL(IP1001_PHY_ID), PHY_ID_MATCH_MODEL(IP1001_PHY_ID),
.name = "ICPlus IP1001", .name = "ICPlus IP1001",
/* PHY_GBIT_FEATURES */ /* PHY_GBIT_FEATURES */
.config_init = &ip1001_config_init, .config_init = ip1001_config_init,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.resume = genphy_resume, .resume = genphy_resume,
}, { }, {
...@@ -355,7 +355,7 @@ static struct phy_driver icplus_driver[] = { ...@@ -355,7 +355,7 @@ static struct phy_driver icplus_driver[] = {
.probe = ip101a_g_probe, .probe = ip101a_g_probe,
.config_intr = ip101a_g_config_intr, .config_intr = ip101a_g_config_intr,
.handle_interrupt = ip101a_g_handle_interrupt, .handle_interrupt = ip101a_g_handle_interrupt,
.config_init = &ip101a_g_config_init, .config_init = ip101a_g_config_init,
.suspend = genphy_suspend, .suspend = genphy_suspend,
.resume = genphy_resume, .resume = genphy_resume,
} }; } };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment