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/aic7770.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/aic7770.c')
-rw-r--r-- | drivers/scsi/aic7xxx/aic7770.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/aic7xxx/aic7770.c b/drivers/scsi/aic7xxx/aic7770.c index 527efd36f5c1..c4d17231c828 100644 --- a/drivers/scsi/aic7xxx/aic7770.c +++ b/drivers/scsi/aic7xxx/aic7770.c | |||
@@ -107,7 +107,7 @@ struct aic7770_identity aic7770_ident_table[] = | |||
107 | ahc_aic7770_EISA_setup | 107 | ahc_aic7770_EISA_setup |
108 | } | 108 | } |
109 | }; | 109 | }; |
110 | const int ahc_num_aic7770_devs = NUM_ELEMENTS(aic7770_ident_table); | 110 | const int ahc_num_aic7770_devs = ARRAY_SIZE(aic7770_ident_table); |
111 | 111 | ||
112 | struct aic7770_identity * | 112 | struct aic7770_identity * |
113 | aic7770_find_device(uint32_t id) | 113 | aic7770_find_device(uint32_t id) |