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/aic7xxx/aic7xxx_pci.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/aic7xxx/aic7xxx_pci.c')
-rw-r--r-- | drivers/scsi/aic7xxx/aic7xxx_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/aic7xxx/aic7xxx_pci.c b/drivers/scsi/aic7xxx/aic7xxx_pci.c index 5f586140e057..b1156fbd4a1a 100644 --- a/drivers/scsi/aic7xxx/aic7xxx_pci.c +++ b/drivers/scsi/aic7xxx/aic7xxx_pci.c | |||
@@ -553,7 +553,7 @@ struct ahc_pci_identity ahc_pci_ident_table [] = | |||
553 | } | 553 | } |
554 | }; | 554 | }; |
555 | 555 | ||
556 | const u_int ahc_num_pci_devs = NUM_ELEMENTS(ahc_pci_ident_table); | 556 | const u_int ahc_num_pci_devs = ARRAY_SIZE(ahc_pci_ident_table); |
557 | 557 | ||
558 | #define AHC_394X_SLOT_CHANNEL_A 4 | 558 | #define AHC_394X_SLOT_CHANNEL_A 4 |
559 | #define AHC_394X_SLOT_CHANNEL_B 5 | 559 | #define AHC_394X_SLOT_CHANNEL_B 5 |