forked from luck/tmp_suning_uos_patched
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>
This commit is contained in:
parent
0a325758a8
commit
0197ffed86
@ -163,8 +163,8 @@ static struct phy_driver at803x_driver[] = {
|
|||||||
.get_wol = at803x_get_wol,
|
.get_wol = at803x_get_wol,
|
||||||
.features = PHY_GBIT_FEATURES,
|
.features = PHY_GBIT_FEATURES,
|
||||||
.flags = PHY_HAS_INTERRUPT,
|
.flags = PHY_HAS_INTERRUPT,
|
||||||
.config_aneg = &genphy_config_aneg,
|
.config_aneg = genphy_config_aneg,
|
||||||
.read_status = &genphy_read_status,
|
.read_status = genphy_read_status,
|
||||||
.driver = {
|
.driver = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
},
|
},
|
||||||
@ -178,8 +178,8 @@ static struct phy_driver at803x_driver[] = {
|
|||||||
.get_wol = at803x_get_wol,
|
.get_wol = at803x_get_wol,
|
||||||
.features = PHY_GBIT_FEATURES,
|
.features = PHY_GBIT_FEATURES,
|
||||||
.flags = PHY_HAS_INTERRUPT,
|
.flags = PHY_HAS_INTERRUPT,
|
||||||
.config_aneg = &genphy_config_aneg,
|
.config_aneg = genphy_config_aneg,
|
||||||
.read_status = &genphy_read_status,
|
.read_status = genphy_read_status,
|
||||||
.driver = {
|
.driver = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
},
|
},
|
||||||
@ -193,8 +193,8 @@ static struct phy_driver at803x_driver[] = {
|
|||||||
.get_wol = at803x_get_wol,
|
.get_wol = at803x_get_wol,
|
||||||
.features = PHY_GBIT_FEATURES,
|
.features = PHY_GBIT_FEATURES,
|
||||||
.flags = PHY_HAS_INTERRUPT,
|
.flags = PHY_HAS_INTERRUPT,
|
||||||
.config_aneg = &genphy_config_aneg,
|
.config_aneg = genphy_config_aneg,
|
||||||
.read_status = &genphy_read_status,
|
.read_status = genphy_read_status,
|
||||||
.driver = {
|
.driver = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user