From 147c7169e859128e86da96275c48d200ad720fd6 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 23 Apr 2011 23:43:21 +0000 Subject: constify default env I can't see any obvious needs for the default environment to be writable, so make it const. Signed-off-by: Mike Frysinger --- common/env_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common/env_common.c') diff --git a/common/env_common.c b/common/env_common.c index c3e6388ac0..19149b513d 100644 --- a/common/env_common.c +++ b/common/env_common.c @@ -47,7 +47,7 @@ static uchar env_get_char_init (int index); #define XMK_STR(x) #x #define MK_STR(x) XMK_STR(x) -uchar default_environment[] = { +const uchar default_environment[] = { #ifdef CONFIG_BOOTARGS "bootargs=" CONFIG_BOOTARGS "\0" #endif @@ -162,7 +162,7 @@ uchar env_get_char (int index) return (c); } -uchar *env_get_addr (int index) +const uchar *env_get_addr (int index) { if (gd->env_valid) return (uchar *)(gd->env_addr + index); -- cgit v1.2.1