From mboxrd@z Thu Jan 1 00:00:00 1970 From: York Sun Date: Thu, 24 Oct 2013 11:02:39 -0700 Subject: [U-Boot] [PATCH 3/6] common/env: Point default envirenoment for GD In-Reply-To: <1380616056-11196-1-git-send-email-prabhakar@freescale.com> References: <1380616056-11196-1-git-send-email-prabhakar@freescale.com> Message-ID: <526960BF.5000605@freescale.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 10/01/2013 01:27 AM, Prabhakar Kushwaha wrote: > GD(Global Data) structure has pointer to envirenoment variable array. > but, it is not being assigned for SPL framwork. > > So update GD pointer with env variable array. > > Signed-off-by: Prabhakar Kushwaha > --- > Based upon git://git.denx.de/u-boot-mpc85xx.git branch next > > common/env_common.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/common/env_common.c b/common/env_common.c > index 1ac3377..84843e1 100644 > --- a/common/env_common.c > +++ b/common/env_common.c > @@ -162,6 +162,9 @@ int env_import(const char *buf, int check) > if (himport_r(&env_htab, (char *)ep->data, ENV_SIZE, '\0', 0, > 0, NULL)) { > gd->flags |= GD_FLG_ENV_READY; > +#ifdef CONFIG_SPL_BUILD > + gd->env_addr = ep->data; > +#endif You are assigning a pointer to a interger. This introduces compiling warning env_common.c:166:16: warning: assignment makes integer from pointer without a cast [enabled by default] Please fix. York