aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/phy
diff options
context:
space:
mode:
authorDaniel Mack <zonque@gmail.com>2013-09-21 10:53:01 -0400
committerDavid S. Miller <davem@davemloft.net>2013-09-27 17:28:32 -0400
commit0197ffed8690751b027253b97f68df6304aaa6a1 (patch)
treeb639ee8e86abd85608a5601718d484943e750d20 /drivers/net/phy
parent0a325758a8183cd09bedb2dea7da666e20f74cb7 (diff)
net: phy: at803x: don't pass function pointers with &
Just a cosmetic cleanup. Signed-off-by: Daniel Mack <zonque@gmail.com> Acked-by: Mugunthan V N <mugunthanvnm@ti.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy')
-rw-r--r--drivers/net/phy/at803x.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/phy/at803x.c b/drivers/net/phy/at803x.c
index ac22283aaf23..417922810c79 100644
--- a/drivers/net/phy/at803x.c
+++ b/drivers/net/phy/at803x.c
@@ -163,8 +163,8 @@ static struct phy_driver at803x_driver[] = {
163 .get_wol = at803x_get_wol, 163 .get_wol = at803x_get_wol,
164 .features = PHY_GBIT_FEATURES, 164 .features = PHY_GBIT_FEATURES,
165 .flags = PHY_HAS_INTERRUPT, 165 .flags = PHY_HAS_INTERRUPT,
166 .config_aneg = &genphy_config_aneg, 166 .config_aneg = genphy_config_aneg,
167 .read_status = &genphy_read_status, 167 .read_status = genphy_read_status,
168 .driver = { 168 .driver = {
169 .owner = THIS_MODULE, 169 .owner = THIS_MODULE,
170 }, 170 },
@@ -178,8 +178,8 @@ static struct phy_driver at803x_driver[] = {
178 .get_wol = at803x_get_wol, 178 .get_wol = at803x_get_wol,
179 .features = PHY_GBIT_FEATURES, 179 .features = PHY_GBIT_FEATURES,
180 .flags = PHY_HAS_INTERRUPT, 180 .flags = PHY_HAS_INTERRUPT,
181 .config_aneg = &genphy_config_aneg, 181 .config_aneg = genphy_config_aneg,
182 .read_status = &genphy_read_status, 182 .read_status = genphy_read_status,
183 .driver = { 183 .driver = {
184 .owner = THIS_MODULE, 184 .owner = THIS_MODULE,
185 }, 185 },
@@ -193,8 +193,8 @@ static struct phy_driver at803x_driver[] = {
193 .get_wol = at803x_get_wol, 193 .get_wol = at803x_get_wol,
194 .features = PHY_GBIT_FEATURES, 194 .features = PHY_GBIT_FEATURES,
195 .flags = PHY_HAS_INTERRUPT, 195 .flags = PHY_HAS_INTERRUPT,
196 .config_aneg = &genphy_config_aneg, 196 .config_aneg = genphy_config_aneg,
197 .read_status = &genphy_read_status, 197 .read_status = genphy_read_status,
198 .driver = { 198 .driver = {
199 .owner = THIS_MODULE, 199 .owner = THIS_MODULE,
200 }, 200 },