diff options
author | Tobias Klauser <tklauser@nuerscht.ch> | 2006-06-09 01:23:48 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2006-06-10 11:45:30 -0400 |
commit | 6391a11375de5e2bb1eb8481e54619761dc65d9f (patch) | |
tree | 956aae1d278a3f731b2e6148ff40a69aa7957ea8 /drivers/scsi/seagate.c | |
parent | 9dc399de0840a478adb71278becf598d3ab3aacc (diff) |
[SCSI] drivers/scsi: Use ARRAY_SIZE macro
Use ARRAY_SIZE macro instead of sizeof(x)/sizeof(x[0]) and remove
duplicates of the macro.
Signed-off-by: Tobias Klauser <tklauser@nuerscht.ch>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/seagate.c')
-rw-r--r-- | drivers/scsi/seagate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/seagate.c b/drivers/scsi/seagate.c index 0ff83ddf13fe..7fa4da4ea64f 100644 --- a/drivers/scsi/seagate.c +++ b/drivers/scsi/seagate.c | |||
@@ -312,7 +312,7 @@ static Signature __initdata signatures[] = { | |||
312 | {"IBM F1 V1.2009/22/93", 5, 25, FD}, | 312 | {"IBM F1 V1.2009/22/93", 5, 25, FD}, |
313 | }; | 313 | }; |
314 | 314 | ||
315 | #define NUM_SIGNATURES (sizeof(signatures) / sizeof(Signature)) | 315 | #define NUM_SIGNATURES ARRAY_SIZE(signatures) |
316 | #endif /* n OVERRIDE */ | 316 | #endif /* n OVERRIDE */ |
317 | 317 | ||
318 | /* | 318 | /* |
@@ -457,7 +457,7 @@ int __init seagate_st0x_detect (struct scsi_host_template * tpnt) | |||
457 | * space for the on-board RAM instead. | 457 | * space for the on-board RAM instead. |
458 | */ | 458 | */ |
459 | 459 | ||
460 | for (i = 0; i < (sizeof (seagate_bases) / sizeof (unsigned int)); ++i) { | 460 | for (i = 0; i < ARRAY_SIZE(seagate_bases); ++i) { |
461 | void __iomem *p = ioremap(seagate_bases[i], 0x2000); | 461 | void __iomem *p = ioremap(seagate_bases[i], 0x2000); |
462 | if (!p) | 462 | if (!p) |
463 | continue; | 463 | continue; |