Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1399348

[PATCH] skd: use ARRAY_SIZE() to calculate size of an array.

From Muhammad Falak R Wani <falakreyaz@gmail.com>
Newsgroups linux.kernel
Subject [PATCH] skd: use ARRAY_SIZE() to calculate size of an array.
Date 2016-05-11 18:40 +0200
Message-ID <rxFl2-3u1-55@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


Use the macro ARRAY_SIZE() to calculate the size of an array, enhancing
readability and compactnes.

Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
---
 drivers/block/skd_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/block/skd_main.c b/drivers/block/skd_main.c
index 910e065..6bd8f29 100644
--- a/drivers/block/skd_main.c
+++ b/drivers/block/skd_main.c
@@ -2282,7 +2282,7 @@ skd_check_status(struct skd_device *skdev,
 		 skerr->key, skerr->code, skerr->qual, skerr->fruc);
 
 	/* Does the info match an entry in the good category? */
-	n = sizeof(skd_chkstat_table) / sizeof(skd_chkstat_table[0]);
+	n = ARRAY_SIZE(skd_chkstat_table);
 	for (i = 0; i < n; i++) {
 		struct sns_info *sns = &skd_chkstat_table[i];
 
-- 
1.9.1

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

[PATCH] skd: use ARRAY_SIZE() to calculate size of an array. Muhammad Falak R Wani <falakreyaz@gmail.com> - 2016-05-11 18:40 +0200

csiph-web