[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <5269eef3dc95981d5a8698b7fb6d03bed8d61a08.1260949674.git.joe@perches.com>
Date: Wed, 16 Dec 2009 00:09:02 -0800
From: Joe Perches <joe@...ches.com>
To: Linus Torvalds <torvalds@...ux-foundation.org>
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH 03/14] kernel.h: ARRAY_SIZE neatening
Make < 80 column, use array as name
Signed-off-by: Joe Perches <joe@...ches.com>
---
include/linux/kernel.h | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/include/linux/kernel.h b/include/linux/kernel.h
index 2cc6d70..9206268 100644
--- a/include/linux/kernel.h
+++ b/include/linux/kernel.h
@@ -39,7 +39,8 @@
#define PTR_ALIGN(p, a) ((typeof(p))ALIGN((unsigned long)(p), (a)))
#define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0)
-#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
+#define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]) + \
+ __must_be_array(array))
#define FIELD_SIZEOF(t, f) (sizeof(((t *)0)->f))
#define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y))
--
1.6.6.rc0.57.gad7a
--
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