net: phy: icplus: drop address operator for functions
authorMichael Walle <michael@walle.cc>
Thu, 11 Feb 2021 07:47:44 +0000 (08:47 +0100)
committerDavid S. Miller <davem@davemloft.net>
Thu, 11 Feb 2021 21:53:25 +0000 (13:53 -0800)
Don't sometimes use the address operator and sometimes not. Drop it and
make the code look uniform.

Signed-off-by: Michael Walle <michael@walle.cc>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/icplus.c

index ae3cf61..43b69ad 100644 (file)
@@ -336,16 +336,16 @@ static struct phy_driver icplus_driver[] = {
        PHY_ID_MATCH_MODEL(IP175C_PHY_ID),
        .name           = "ICPlus IP175C",
        /* PHY_BASIC_FEATURES */
-       .config_init    = &ip175c_config_init,
-       .config_aneg    = &ip175c_config_aneg,
-       .read_status    = &ip175c_read_status,
+       .config_init    = ip175c_config_init,
+       .config_aneg    = ip175c_config_aneg,
+       .read_status    = ip175c_read_status,
        .suspend        = genphy_suspend,
        .resume         = genphy_resume,
 }, {
        PHY_ID_MATCH_MODEL(IP1001_PHY_ID),
        .name           = "ICPlus IP1001",
        /* PHY_GBIT_FEATURES */
-       .config_init    = &ip1001_config_init,
+       .config_init    = ip1001_config_init,
        .suspend        = genphy_suspend,
        .resume         = genphy_resume,
 }, {
@@ -355,7 +355,7 @@ static struct phy_driver icplus_driver[] = {
        .probe          = ip101a_g_probe,
        .config_intr    = ip101a_g_config_intr,
        .handle_interrupt = ip101a_g_handle_interrupt,
-       .config_init    = &ip101a_g_config_init,
+       .config_init    = ip101a_g_config_init,
        .suspend        = genphy_suspend,
        .resume         = genphy_resume,
 } };