diff options
author | Kulikov Vasiliy <segooon@gmail.com> | 2010-06-28 15:55:12 +0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2010-07-20 17:15:32 +0200 |
commit | 7156fffaaa15aeb0e0247736eff0a86f75f49f81 (patch) | |
tree | 9bc9f9ad5fd99b6f5dce04a588b061a453d5f92f /drivers/scsi | |
parent | 501af8d110f1fca597ff61c8611d018360ff9bf7 (diff) | |
download | linux-7156fffaaa15aeb0e0247736eff0a86f75f49f81.tar.gz linux-7156fffaaa15aeb0e0247736eff0a86f75f49f81.tar.xz |
libfc: use ARRAY_SIZE
Change sizeof(x) / sizeof(*x) to ARRAY_SIZE(x).
Signed-off-by: Kulikov Vasiliy <segooon@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/libfc/fc_exch.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/scsi/libfc/fc_exch.c b/drivers/scsi/libfc/fc_exch.c index 104e0fba7c43..ca52bfa4a1ec 100644 --- a/drivers/scsi/libfc/fc_exch.c +++ b/drivers/scsi/libfc/fc_exch.c @@ -219,8 +219,6 @@ static void fc_exch_els_rrq(struct fc_seq *, struct fc_frame *); */ static char *fc_exch_rctl_names[] = FC_RCTL_NAMES_INIT; -#define FC_TABLE_SIZE(x) (sizeof(x) / sizeof(x[0])) - /** * fc_exch_name_lookup() - Lookup name by opcode * @op: Opcode to be looked up @@ -249,7 +247,7 @@ static inline const char *fc_exch_name_lookup(unsigned int op, char **table, static const char *fc_exch_rctl_name(unsigned int op) { return fc_exch_name_lookup(op, fc_exch_rctl_names, - FC_TABLE_SIZE(fc_exch_rctl_names)); + ARRAY_SIZE(fc_exch_rctl_names)); } /** |