diff mbox

[U-Boot] image-fit: Fix compiling error caused by autoconf.h

Message ID 1479928165-3313-2-git-send-email-york.sun@nxp.com
State Accepted
Commit 020198b0c7d251cf6bde76024ecf0ee711860534
Delegated to: York Sun
Headers show

Commit Message

York Sun Nov. 23, 2016, 7:09 p.m. UTC
Commit ec6617c3 includes autoconf.h in image-fit.c, causing conflict
for board odroid-xu3 which overwrites CONFIG_SYS_BOARD in header
file. Move the include higher and use linux/kconfig.h instead of
generated/autoconf.h.

Signed-off-by: York Sun <york.sun@nxp.com>
CC: Alison Wang <alison.wang@nxp.com>
---
 common/image-fit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Alison Wang Nov. 24, 2016, 1:28 a.m. UTC | #1
> -----Original Message-----
> From: York Sun [mailto:york.sun@nxp.com]
> Sent: Thursday, November 24, 2016 3:09 AM
> To: u-boot@lists.denx.de
> Cc: york sun <york.sun@nxp.com>; Alison Wang <alison.wang@nxp.com>
> Subject: [PATCH] image-fit: Fix compiling error caused by autoconf.h
> 
> Commit ec6617c3 includes autoconf.h in image-fit.c, causing conflict
> for board odroid-xu3 which overwrites CONFIG_SYS_BOARD in header
> file. Move the include higher and use linux/kconfig.h instead of
> generated/autoconf.h.
> 
> Signed-off-by: York Sun <york.sun@nxp.com>
> CC: Alison Wang <alison.wang@nxp.com>
> ---
>  common/image-fit.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/common/image-fit.c b/common/image-fit.c
> index ea56d5b..9468e51 100644
> --- a/common/image-fit.c
> +++ b/common/image-fit.c
> @@ -14,6 +14,7 @@
>  #include <time.h>
>  #else
>  #include <linux/compiler.h>
> +#include <linux/kconfig.h>
>  #include <common.h>
>  #include <errno.h>
>  #include <mapmem.h>
> @@ -27,7 +28,6 @@ DECLARE_GLOBAL_DATA_PTR;
>  #include <u-boot/md5.h>
>  #include <u-boot/sha1.h>
>  #include <u-boot/sha256.h>
> -#include <generated/autoconf.h>
> 
> 
> /**********************************************************************
> *******/
>  /* New uImage format routines */

Reviewed-by: Alison Wang <Alison.wang@nxp.com>

Thanks.

Best Regards,
Alison Wang
diff mbox

Patch

diff --git a/common/image-fit.c b/common/image-fit.c
index ea56d5b..9468e51 100644
--- a/common/image-fit.c
+++ b/common/image-fit.c
@@ -14,6 +14,7 @@ 
 #include <time.h>
 #else
 #include <linux/compiler.h>
+#include <linux/kconfig.h>
 #include <common.h>
 #include <errno.h>
 #include <mapmem.h>
@@ -27,7 +28,6 @@  DECLARE_GLOBAL_DATA_PTR;
 #include <u-boot/md5.h>
 #include <u-boot/sha1.h>
 #include <u-boot/sha256.h>
-#include <generated/autoconf.h>
 
 /*****************************************************************************/
 /* New uImage format routines */