[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1277726085-24434-1-git-send-email-segooon@gmail.com>
Date: Mon, 28 Jun 2010 15:54:44 +0400
From: Kulikov Vasiliy <segooon@...il.com>
To: trivial@...nel.org
Cc: Kernel Janitors <kernel-janitors@...r.kernel.org>,
Mike Miller <mike.miller@...com>,
Jens Axboe <jens.axboe@...cle.com>,
"Stephen M. Cameron" <scameron@...rdog.cce.hp.com>,
Andrew Morton <akpm@...ux-foundation.org>,
Andrew Patterson <andrew.patterson@...com>,
iss_storagedev@...com, linux-kernel@...r.kernel.org
Subject: [PATCH 01/16] trivial: use ARRAY_SIZE
Change sizeof(x) / sizeof(*x) to ARRAY_SIZE(x).
Signed-off-by: Kulikov Vasiliy <segooon@...il.com>
---
drivers/block/cciss.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c
index 51ceaee..e1e7143 100644
--- a/drivers/block/cciss.c
+++ b/drivers/block/cciss.c
@@ -335,7 +335,7 @@ static void cciss_map_sg_chain_block(ctlr_info_t *h, CommandList_struct *c,
static const char *raid_label[] = { "0", "4", "1(1+0)", "5", "5+1", "ADG",
"UNKNOWN"
};
-#define RAID_UNKNOWN (sizeof(raid_label) / sizeof(raid_label[0])-1)
+#define RAID_UNKNOWN (ARRAY_SIZE(raid_label)-1)
#ifdef CONFIG_PROC_FS
--
1.7.0.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists