From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Sat, 17 Sep 2011 21:29:59 +0200 Subject: [U-Boot] [RFC PATCH 02/20] sandbox: Add architecture image support In-Reply-To: <1316278139-28635-3-git-send-email-sjg@chromium.org> References: <1316278139-28635-2-git-send-email-sjg@chromium.org> <1316278139-28635-3-git-send-email-sjg@chromium.org> Message-ID: <201109172130.00070.marek.vasut@gmail.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 Saturday, September 17, 2011 06:48:41 PM Simon Glass wrote: > We won't actually load an image with this architecture, but we still need > to define it. > > Signed-off-by: Simon Glass > --- > common/image.c | 5 +++-- > include/image.h | 3 +++ > 2 files changed, 6 insertions(+), 2 deletions(-) > > diff --git a/common/image.c b/common/image.c > index d38ce4a..8283561 100644 > --- a/common/image.c > +++ b/common/image.c > @@ -1581,7 +1581,7 @@ int boot_get_fdt (int flag, int argc, char * const > argv[], bootm_headers_t *imag goto error; > } > > - printf (" Booting using the fdt blob at 0x%x\n", (int)fdt_blob); > + printf(" Booting using the fdt blob at 0x%p\n", fdt_blob); Well this is a fix and the patch description doesn't match it. Can you split it or something? Cheers