Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0197ffed authored by Daniel Mack's avatar Daniel Mack Committed by David S. Miller
Browse files

net: phy: at803x: don't pass function pointers with &



Just a cosmetic cleanup.

Signed-off-by: default avatarDaniel Mack <zonque@gmail.com>
Acked-by: default avatarMugunthan V N <mugunthanvnm@ti.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0a325758
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -163,8 +163,8 @@ static struct phy_driver at803x_driver[] = {
	.get_wol	= at803x_get_wol,
	.features	= PHY_GBIT_FEATURES,
	.flags		= PHY_HAS_INTERRUPT,
	.config_aneg	= &genphy_config_aneg,
	.read_status	= &genphy_read_status,
	.config_aneg	= genphy_config_aneg,
	.read_status	= genphy_read_status,
	.driver		= {
		.owner = THIS_MODULE,
	},
@@ -178,8 +178,8 @@ static struct phy_driver at803x_driver[] = {
	.get_wol	= at803x_get_wol,
	.features	= PHY_GBIT_FEATURES,
	.flags		= PHY_HAS_INTERRUPT,
	.config_aneg	= &genphy_config_aneg,
	.read_status	= &genphy_read_status,
	.config_aneg	= genphy_config_aneg,
	.read_status	= genphy_read_status,
	.driver		= {
		.owner = THIS_MODULE,
	},
@@ -193,8 +193,8 @@ static struct phy_driver at803x_driver[] = {
	.get_wol	= at803x_get_wol,
	.features	= PHY_GBIT_FEATURES,
	.flags		= PHY_HAS_INTERRUPT,
	.config_aneg	= &genphy_config_aneg,
	.read_status	= &genphy_read_status,
	.config_aneg	= genphy_config_aneg,
	.read_status	= genphy_read_status,
	.driver		= {
		.owner = THIS_MODULE,
	},