diff options
author | Denis Cheng <crquan@gmail.com> | 2007-09-02 06:30:18 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:51:15 -0400 |
commit | ff8ac60948ba819b89e9c87083e8050fc2f89999 (patch) | |
tree | 611975d22d7ddd8c49a073c61e6e4b7c9523fedb /drivers/net/irda | |
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/irda')
-rw-r--r-- | drivers/net/irda/actisys-sir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/irda/actisys-sir.c b/drivers/net/irda/actisys-sir.c index 9715ab5572e9..ccf6ec548a64 100644 --- a/drivers/net/irda/actisys-sir.c +++ b/drivers/net/irda/actisys-sir.c | |||
@@ -67,7 +67,7 @@ static int actisys_reset(struct sir_dev *); | |||
67 | /* Note : the 220L doesn't support 38400, but we will fix that below */ | 67 | /* Note : the 220L doesn't support 38400, but we will fix that below */ |
68 | static unsigned baud_rates[] = { 9600, 19200, 57600, 115200, 38400 }; | 68 | static unsigned baud_rates[] = { 9600, 19200, 57600, 115200, 38400 }; |
69 | 69 | ||
70 | #define MAX_SPEEDS (sizeof(baud_rates)/sizeof(baud_rates[0])) | 70 | #define MAX_SPEEDS ARRAY_SIZE(baud_rates) |
71 | 71 | ||
72 | static struct dongle_driver act220l = { | 72 | static struct dongle_driver act220l = { |
73 | .owner = THIS_MODULE, | 73 | .owner = THIS_MODULE, |