diff options
| author | Denis Cheng <crquan@gmail.com> | 2007-09-02 18:30:18 +0800 | 
|---|---|---|
| committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 16:51:15 -0700 | 
| commit | ff8ac60948ba819b89e9c87083e8050fc2f89999 (patch) | |
| tree | 611975d22d7ddd8c49a073c61e6e4b7c9523fedb /drivers/net/tulip/de4x5.c | |
| parent | 10d024c1b2fd58af8362670d7d6e5ae52fc33353 (diff) | |
drivers/net/: all drivers/net/ cleanup with ARRAY_SIZE
Signed-off-by: Denis Cheng <crquan@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/tulip/de4x5.c')
| -rw-r--r-- | drivers/net/tulip/de4x5.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/drivers/net/tulip/de4x5.c b/drivers/net/tulip/de4x5.c index ba7f47c2dcff..ee4215ca63f0 100644 --- a/drivers/net/tulip/de4x5.c +++ b/drivers/net/tulip/de4x5.c @@ -3945,7 +3945,7 @@ create_packet(struct net_device *dev, char *frame, int len)  static int  EISA_signature(char *name, struct device *device)  { -    int i, status = 0, siglen = sizeof(de4x5_signatures)/sizeof(c_char *); +    int i, status = 0, siglen = ARRAY_SIZE(de4x5_signatures);      struct eisa_device *edev;      *name = '\0'; @@ -3966,7 +3966,7 @@ EISA_signature(char *name, struct device *device)  static int  PCI_signature(char *name, struct de4x5_private *lp)  { -    int i, status = 0, siglen = sizeof(de4x5_signatures)/sizeof(c_char *); +    int i, status = 0, siglen = ARRAY_SIZE(de4x5_signatures);      if (lp->chipset == DC21040) {  	strcpy(name, "DE434/5"); @@ -5072,7 +5072,7 @@ mii_get_phy(struct net_device *dev)  {      struct de4x5_private *lp = netdev_priv(dev);      u_long iobase = dev->base_addr; -    int i, j, k, n, limit=sizeof(phy_info)/sizeof(struct phy_table); +    int i, j, k, n, limit=ARRAY_SIZE(phy_info);      int id;      lp->active = 0; | 
