summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-10-20 07:17:45 -0400
committerWolfgang Denk <wd@denx.de>2010-11-28 21:58:29 +0100
commit543f0a3819a9af130f3f80a660099fad8d2d4b8e (patch)
treeb5b5146ab42f3e9dfe306a404e3153069d8daf7d
parent7edb186fcf96bd52aadf0529aa135bb393732060 (diff)
downloadtalos-obmc-uboot-543f0a3819a9af130f3f80a660099fad8d2d4b8e.tar.gz
talos-obmc-uboot-543f0a3819a9af130f3f80a660099fad8d2d4b8e.zip
ctype: constify lookup table
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r--include/linux/ctype.h2
-rw-r--r--lib/ctype.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/ctype.h b/include/linux/ctype.h
index afa3639229..6dec944a37 100644
--- a/include/linux/ctype.h
+++ b/include/linux/ctype.h
@@ -15,7 +15,7 @@
#define _X 0x40 /* hex digit */
#define _SP 0x80 /* hard space (0x20) */
-extern unsigned char _ctype[];
+extern const unsigned char _ctype[];
#define __ismask(x) (_ctype[(int)(unsigned char)(x)])
diff --git a/lib/ctype.c b/lib/ctype.c
index 6ed0468a21..dffe563724 100644
--- a/lib/ctype.c
+++ b/lib/ctype.c
@@ -29,7 +29,7 @@
#include <linux/ctype.h>
-unsigned char _ctype[] = {
+const unsigned char _ctype[] = {
_C,_C,_C,_C,_C,_C,_C,_C, /* 0-7 */
_C,_C|_S,_C|_S,_C|_S,_C|_S,_C|_S,_C,_C, /* 8-15 */
_C,_C,_C,_C,_C,_C,_C,_C, /* 16-23 */
OpenPOWER on IntegriCloud