* [U-Boot] [PATCH] Fix compile issue in arch/arm/lib/board.c
@ 2011-10-24 9:12 Marek Vasut
2011-10-24 9:25 ` Heiko Schocher
2011-10-24 19:23 ` Wolfgang Denk
0 siblings, 2 replies; 4+ messages in thread
From: Marek Vasut @ 2011-10-24 9:12 UTC (permalink / raw)
To: u-boot
The commit dc8bbea0170eb2aca428ea221c91fc2e5e11f199 breaks the build of U-Boot
if CONFIG_CMD_NET is enabled.
arm: Use getenv_ulong() in place of getenv(), strtoul
This changes the board code to use the new getenv_ulong() function.
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Wolfgang Denk <wd@denx.de>
Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
---
arch/arm/lib/board.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c
index c764844..558e973 100644
--- a/arch/arm/lib/board.c
+++ b/arch/arm/lib/board.c
@@ -566,7 +566,7 @@ void board_init_r(gd_t *id, ulong dest_addr)
/* Initialize from environment */
load_addr = getenv_ulong("loadaddr", 16, load_addr);
#if defined(CONFIG_CMD_NET)
- s = getenv("bootfile");
+ char *s = getenv("bootfile");
if (s != NULL)
copy_filename(BootFile, s, sizeof(BootFile));
#endif
--
1.7.6.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH] Fix compile issue in arch/arm/lib/board.c
2011-10-24 9:12 [U-Boot] [PATCH] Fix compile issue in arch/arm/lib/board.c Marek Vasut
@ 2011-10-24 9:25 ` Heiko Schocher
2011-10-24 9:31 ` Marek Vasut
2011-10-24 19:23 ` Wolfgang Denk
1 sibling, 1 reply; 4+ messages in thread
From: Heiko Schocher @ 2011-10-24 9:25 UTC (permalink / raw)
To: u-boot
Hello Marek,
Marek Vasut wrote:
> The commit dc8bbea0170eb2aca428ea221c91fc2e5e11f199 breaks the build of U-Boot
> if CONFIG_CMD_NET is enabled.
>
> arm: Use getenv_ulong() in place of getenv(), strtoul
>
> This changes the board code to use the new getenv_ulong() function.
>
> Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
> Cc: Simon Glass <sjg@chromium.org>
> Cc: Wolfgang Denk <wd@denx.de>
> Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
> ---
> arch/arm/lib/board.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c
> index c764844..558e973 100644
> --- a/arch/arm/lib/board.c
> +++ b/arch/arm/lib/board.c
> @@ -566,7 +566,7 @@ void board_init_r(gd_t *id, ulong dest_addr)
> /* Initialize from environment */
> load_addr = getenv_ulong("loadaddr", 16, load_addr);
> #if defined(CONFIG_CMD_NET)
> - s = getenv("bootfile");
> + char *s = getenv("bootfile");
Did you compiled this? I think, this should generate a compiler warning.
> if (s != NULL)
> copy_filename(BootFile, s, sizeof(BootFile));
> #endif
bye,
Heiko
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH] Fix compile issue in arch/arm/lib/board.c
2011-10-24 9:25 ` Heiko Schocher
@ 2011-10-24 9:31 ` Marek Vasut
0 siblings, 0 replies; 4+ messages in thread
From: Marek Vasut @ 2011-10-24 9:31 UTC (permalink / raw)
To: u-boot
On Monday, October 24, 2011 11:25:32 AM Heiko Schocher wrote:
> Hello Marek,
>
> Marek Vasut wrote:
> > The commit dc8bbea0170eb2aca428ea221c91fc2e5e11f199 breaks the build of
> > U-Boot if CONFIG_CMD_NET is enabled.
> >
> > arm: Use getenv_ulong() in place of getenv(), strtoul
> >
> > This changes the board code to use the new getenv_ulong() function.
> >
> > Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
> > Cc: Simon Glass <sjg@chromium.org>
> > Cc: Wolfgang Denk <wd@denx.de>
> > Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
> > ---
> >
> > arch/arm/lib/board.c | 2 +-
> > 1 files changed, 1 insertions(+), 1 deletions(-)
> >
> > diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c
> > index c764844..558e973 100644
> > --- a/arch/arm/lib/board.c
> > +++ b/arch/arm/lib/board.c
> > @@ -566,7 +566,7 @@ void board_init_r(gd_t *id, ulong dest_addr)
> >
> > /* Initialize from environment */
> > load_addr = getenv_ulong("loadaddr", 16, load_addr);
> >
> > #if defined(CONFIG_CMD_NET)
> >
> > - s = getenv("bootfile");
> > + char *s = getenv("bootfile");
>
> Did you compiled this? I think, this should generate a compiler warning.
>
> > if (s != NULL)
> >
> > copy_filename(BootFile, s, sizeof(BootFile));
> >
> > #endif
>
> bye,
> Heiko
Hey Heiko,
I did and it does not. I found that on a phycore pcm037 with ELDK5. But I just
replied your patch should be used ;-)
Cheers
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH] Fix compile issue in arch/arm/lib/board.c
2011-10-24 9:12 [U-Boot] [PATCH] Fix compile issue in arch/arm/lib/board.c Marek Vasut
2011-10-24 9:25 ` Heiko Schocher
@ 2011-10-24 19:23 ` Wolfgang Denk
1 sibling, 0 replies; 4+ messages in thread
From: Wolfgang Denk @ 2011-10-24 19:23 UTC (permalink / raw)
To: u-boot
Dear Marek Vasut,
In message <1319447521-6020-1-git-send-email-marek.vasut@gmail.com> you wrote:
> The commit dc8bbea0170eb2aca428ea221c91fc2e5e11f199 breaks the build of U-Boot
> if CONFIG_CMD_NET is enabled.
>
> arm: Use getenv_ulong() in place of getenv(), strtoul
>
> This changes the board code to use the new getenv_ulong() function.
>
> Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
> Cc: Simon Glass <sjg@chromium.org>
> Cc: Wolfgang Denk <wd@denx.de>
> Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
> ---
> arch/arm/lib/board.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c
> index c764844..558e973 100644
> --- a/arch/arm/lib/board.c
> +++ b/arch/arm/lib/board.c
> @@ -566,7 +566,7 @@ void board_init_r(gd_t *id, ulong dest_addr)
> /* Initialize from environment */
> load_addr = getenv_ulong("loadaddr", 16, load_addr);
> #if defined(CONFIG_CMD_NET)
> - s = getenv("bootfile");
> + char *s = getenv("bootfile");
Never mix declarations with code.
[no need to resubmit, I applied Simon's patch instead.]
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
If all you have is a hammer, everything looks like a nail.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-10-24 19:23 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-24 9:12 [U-Boot] [PATCH] Fix compile issue in arch/arm/lib/board.c Marek Vasut
2011-10-24 9:25 ` Heiko Schocher
2011-10-24 9:31 ` Marek Vasut
2011-10-24 19:23 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox