diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2008-09-01 07:43:14 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-09-03 09:53:42 -0400 |
commit | 767e468c06fc0e88f95881c1056437688b37c7c6 (patch) | |
tree | 57bd196f5c71cc7cccc40dc8bb2c50fd7aadb16f /drivers/net/sfc/falcon.c | |
parent | 2c10b32bf57db7ec6d4cca4c4aa3d86bacb01c8a (diff) |
sfc: Replace net_dev->priv with netdev_priv(net_dev)
Use of the net_device::priv field is deprecated.
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/net/sfc/falcon.c')
-rw-r--r-- | drivers/net/sfc/falcon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/sfc/falcon.c b/drivers/net/sfc/falcon.c index 9138ee5b7b7b..c7aa2f61cb1c 100644 --- a/drivers/net/sfc/falcon.c +++ b/drivers/net/sfc/falcon.c | |||
@@ -1951,7 +1951,7 @@ static int falcon_gmii_wait(struct efx_nic *efx) | |||
1951 | static void falcon_mdio_write(struct net_device *net_dev, int phy_id, | 1951 | static void falcon_mdio_write(struct net_device *net_dev, int phy_id, |
1952 | int addr, int value) | 1952 | int addr, int value) |
1953 | { | 1953 | { |
1954 | struct efx_nic *efx = net_dev->priv; | 1954 | struct efx_nic *efx = netdev_priv(net_dev); |
1955 | unsigned int phy_id2 = phy_id & FALCON_PHY_ID_ID_MASK; | 1955 | unsigned int phy_id2 = phy_id & FALCON_PHY_ID_ID_MASK; |
1956 | efx_oword_t reg; | 1956 | efx_oword_t reg; |
1957 | 1957 | ||
@@ -2019,7 +2019,7 @@ static void falcon_mdio_write(struct net_device *net_dev, int phy_id, | |||
2019 | * could be read, -1 will be returned. */ | 2019 | * could be read, -1 will be returned. */ |
2020 | static int falcon_mdio_read(struct net_device *net_dev, int phy_id, int addr) | 2020 | static int falcon_mdio_read(struct net_device *net_dev, int phy_id, int addr) |
2021 | { | 2021 | { |
2022 | struct efx_nic *efx = net_dev->priv; | 2022 | struct efx_nic *efx = netdev_priv(net_dev); |
2023 | unsigned int phy_addr = phy_id & FALCON_PHY_ID_ID_MASK; | 2023 | unsigned int phy_addr = phy_id & FALCON_PHY_ID_ID_MASK; |
2024 | efx_oword_t reg; | 2024 | efx_oword_t reg; |
2025 | int value = -1; | 2025 | int value = -1; |