diff options
author | Wang Chen <wangchen@cn.fujitsu.com> | 2008-11-13 02:38:14 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-13 02:38:14 -0500 |
commit | 4cf1653aa90c6320dc8032443b5e322820aa28b1 (patch) | |
tree | 7920008d3f953defdcda8c81d39da963290d93ad /drivers/net/eepro.c | |
parent | 454d7c9b14e20fd1949e2686e9de4a2926e01476 (diff) |
netdevice: safe convert to netdev_priv() #part-2
We have some reasons to kill netdev->priv:
1. netdev->priv is equal to netdev_priv().
2. netdev_priv() wraps the calculation of netdev->priv's offset, obviously
netdev_priv() is more flexible than netdev->priv.
But we cann't kill netdev->priv, because so many drivers reference to it
directly.
This patch is a safe convert for netdev->priv to netdev_priv(netdev).
Since all of the netdev->priv is only for read.
But it is too big to be sent in one mail.
I split it to 4 parts and make every part smaller than 100,000 bytes,
which is max size allowed by vger.
Signed-off-by: Wang Chen <wangchen@cn.fujitsu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/eepro.c')
-rw-r--r-- | drivers/net/eepro.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/eepro.c b/drivers/net/eepro.c index 93387f16c2ea..0a984619411b 100644 --- a/drivers/net/eepro.c +++ b/drivers/net/eepro.c | |||
@@ -605,7 +605,7 @@ out: | |||
605 | 605 | ||
606 | static void __init printEEPROMInfo(struct net_device *dev) | 606 | static void __init printEEPROMInfo(struct net_device *dev) |
607 | { | 607 | { |
608 | struct eepro_local *lp = (struct eepro_local *)dev->priv; | 608 | struct eepro_local *lp = netdev_priv(dev); |
609 | int ioaddr = dev->base_addr; | 609 | int ioaddr = dev->base_addr; |
610 | unsigned short Word; | 610 | unsigned short Word; |
611 | int i,j; | 611 | int i,j; |
@@ -1674,7 +1674,7 @@ eepro_transmit_interrupt(struct net_device *dev) | |||
1674 | static int eepro_ethtool_get_settings(struct net_device *dev, | 1674 | static int eepro_ethtool_get_settings(struct net_device *dev, |
1675 | struct ethtool_cmd *cmd) | 1675 | struct ethtool_cmd *cmd) |
1676 | { | 1676 | { |
1677 | struct eepro_local *lp = (struct eepro_local *)dev->priv; | 1677 | struct eepro_local *lp = netdev_priv(dev); |
1678 | 1678 | ||
1679 | cmd->supported = SUPPORTED_10baseT_Half | | 1679 | cmd->supported = SUPPORTED_10baseT_Half | |
1680 | SUPPORTED_10baseT_Full | | 1680 | SUPPORTED_10baseT_Full | |