From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andre Schwarz Date: Thu, 20 Oct 2011 13:48:01 +0200 Subject: [U-Boot] [PATCH] mv_common.c: get rid of 'defined but not used' warning In-Reply-To: <1319110638-20331-1-git-send-email-michael.jones@matrix-vision.de> References: <1319110638-20331-1-git-send-email-michael.jones@matrix-vision.de> Message-ID: <4EA00A71.4010004@matrix-vision.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Am 20.10.2011 13:37, schrieb Michael Jones: > When CONFIG_ENV_IS_NOWHERE, got following warning: > mv_common.c:32:14: warning: 'entries_to_keep' defined but not used. > Get rid of this warning. > > Signed-off-by: Michael Jones Acked-by: Andre Schwarz > --- > board/matrix_vision/common/mv_common.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/board/matrix_vision/common/mv_common.c b/board/matrix_vision/common/mv_common.c > index 404c8b4..acb72c5 100644 > --- a/board/matrix_vision/common/mv_common.c > +++ b/board/matrix_vision/common/mv_common.c > @@ -29,6 +29,7 @@ > > DECLARE_GLOBAL_DATA_PTR; > > +#ifndef CONFIG_ENV_IS_NOWHERE > static char* entries_to_keep[] = { > "serial#", "ethaddr", "eth1addr", "model_info", "sensor_cnt", > "fpgadatasize", "ddr_size", "use_dhcp", "use_static_ipaddr", > @@ -38,7 +39,6 @@ static char* entries_to_keep[] = { > #define MV_MAX_ENV_ENTRY_LENGTH 64 > #define MV_KEEP_ENTRIES ARRAY_SIZE(entries_to_keep) > > -#ifndef CONFIG_ENV_IS_NOWHERE > void mv_reset_environment(void) > { > int i;