* [U-Boot] [PATCH] bootm: fix usage of lmb_reserve()
@ 2012-04-03 10:16 Andreas Bießmann
2012-04-03 10:32 ` Andreas Bießmann
0 siblings, 1 reply; 3+ messages in thread
From: Andreas Bießmann @ 2012-04-03 10:16 UTC (permalink / raw)
To: u-boot
From: Andreas Bie?mann <biessmann@corscience.de>
commit 44f074c771c4b70d250b0d7ed2f7513488c678bb brakes compiling avr32 boards
which do not have CONFIG_LMB. This patch re-add the empty lmb_reserve() define
to opt-out respective code parts in do_bootm() and do_bootm_subcommand().
This patch fixes errors like this:
---8<---
cmd_bootm.c: In function 'do_bootm_subcommand':
cmd_bootm.c:518: error: 'bootm_headers_t' has no member named 'lmb'
cmd_bootm.c: In function 'do_bootm':
cmd_bootm.c:665: error: 'bootm_headers_t' has no member named 'lmb'
--->8---
Signed-off-by: Andreas Bie?mann <biessmann@corscience.de>
---
common/cmd_bootm.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c
index 9ad2535..7d72c7a 100644
--- a/common/cmd_bootm.c
+++ b/common/cmd_bootm.c
@@ -186,6 +186,8 @@ static void boot_start_lmb(bootm_headers_t *images)
board_lmb_reserve(&images->lmb);
}
#else
+/* we want to opt-out access to images.lmb by precompiler !*/
+# define lmb_reserve(lmb, base, size)
static inline void boot_start_lmb(bootm_headers_t *images) { }
#endif
--
1.7.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* [U-Boot] [PATCH] bootm: fix usage of lmb_reserve()
2012-04-03 10:16 [U-Boot] [PATCH] bootm: fix usage of lmb_reserve() Andreas Bießmann
@ 2012-04-03 10:32 ` Andreas Bießmann
2012-04-03 13:43 ` Marek Vasut
0 siblings, 1 reply; 3+ messages in thread
From: Andreas Bießmann @ 2012-04-03 10:32 UTC (permalink / raw)
To: u-boot
Hi,
On 03.04.2012 12:16, Andreas Bie?mann wrote:
> From: Andreas Bie?mann <biessmann@corscience.de>
>
> commit 44f074c771c4b70d250b0d7ed2f7513488c678bb brakes compiling avr32 boards
> which do not have CONFIG_LMB. This patch re-add the empty lmb_reserve() define
> to opt-out respective code parts in do_bootm() and do_bootm_subcommand().
>
> This patch fixes errors like this:
> ---8<---
> cmd_bootm.c: In function 'do_bootm_subcommand':
> cmd_bootm.c:518: error: 'bootm_headers_t' has no member named 'lmb'
> cmd_bootm.c: In function 'do_bootm':
> cmd_bootm.c:665: error: 'bootm_headers_t' has no member named 'lmb'
> --->8---
again days to late and about half an hour unnecessary work ... should
really check ML more often.
http://patchwork.ozlabs.org/patch/149924/ was before.
> Signed-off-by: Andreas Bie?mann <biessmann@corscience.de>
> ---
> common/cmd_bootm.c | 2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c
> index 9ad2535..7d72c7a 100644
> --- a/common/cmd_bootm.c
> +++ b/common/cmd_bootm.c
> @@ -186,6 +186,8 @@ static void boot_start_lmb(bootm_headers_t *images)
> board_lmb_reserve(&images->lmb);
> }
> #else
> +/* we want to opt-out access to images.lmb by precompiler !*/
I would like to have some comment like this in the other patch.
regards
Andreas Bie?mann
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH] bootm: fix usage of lmb_reserve()
2012-04-03 10:32 ` Andreas Bießmann
@ 2012-04-03 13:43 ` Marek Vasut
0 siblings, 0 replies; 3+ messages in thread
From: Marek Vasut @ 2012-04-03 13:43 UTC (permalink / raw)
To: u-boot
Dear Andreas Bie?mann,
> Hi,
>
> On 03.04.2012 12:16, Andreas Bie?mann wrote:
> > From: Andreas Bie?mann <biessmann@corscience.de>
> >
> > commit 44f074c771c4b70d250b0d7ed2f7513488c678bb brakes compiling avr32
> > boards which do not have CONFIG_LMB. This patch re-add the empty
> > lmb_reserve() define to opt-out respective code parts in do_bootm() and
> > do_bootm_subcommand().
> >
> > This patch fixes errors like this:
> > ---8<---
> > cmd_bootm.c: In function 'do_bootm_subcommand':
> > cmd_bootm.c:518: error: 'bootm_headers_t' has no member named 'lmb'
> > cmd_bootm.c: In function 'do_bootm':
> > cmd_bootm.c:665: error: 'bootm_headers_t' has no member named 'lmb'
> > --->8---
>
> again days to late and about half an hour unnecessary work ... should
> really check ML more often.
>
> http://patchwork.ozlabs.org/patch/149924/ was before.
>
> > Signed-off-by: Andreas Bie?mann <biessmann@corscience.de>
> > ---
> >
> > common/cmd_bootm.c | 2 ++
> > 1 files changed, 2 insertions(+), 0 deletions(-)
> >
> > diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c
> > index 9ad2535..7d72c7a 100644
> > --- a/common/cmd_bootm.c
> > +++ b/common/cmd_bootm.c
> > @@ -186,6 +186,8 @@ static void boot_start_lmb(bootm_headers_t *images)
> >
> > board_lmb_reserve(&images->lmb);
> >
> > }
> > #else
> >
> > +/* we want to opt-out access to images.lmb by precompiler !*/
>
> I would like to have some comment like this in the other patch.
Errr ... I believe we should have a subsequent fix that removes the aftereffect
of the macro altogether.
>
> regards
>
> Andreas Bie?mann
Best regards,
Marek Vasut
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-04-03 13:43 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-03 10:16 [U-Boot] [PATCH] bootm: fix usage of lmb_reserve() Andreas Bießmann
2012-04-03 10:32 ` Andreas Bießmann
2012-04-03 13:43 ` Marek Vasut
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox