From mboxrd@z Thu Jan 1 00:00:00 1970 From: York Sun Date: Wed, 3 Oct 2018 16:17:51 +0000 Subject: [U-Boot] [PATCH 13/53] armv8: ls1043aqds: define environment address for QSPI boot References: <20181003113736.14981-1-rajesh.bhagat@nxp.com> <20181003113736.14981-14-rajesh.bhagat@nxp.com> Message-ID: 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/03/2018 04:38 AM, Rajesh Bhagat wrote: > Defines environment address for QSPI boot > > Signed-off-by: Rajesh Bhagat > --- > board/freescale/ls1043aqds/ls1043aqds.c | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/board/freescale/ls1043aqds/ls1043aqds.c b/board/freescale/ls1043aqds/ls1043aqds.c > index 5247d9ac14..1f317a4574 100644 > --- a/board/freescale/ls1043aqds/ls1043aqds.c > +++ b/board/freescale/ls1043aqds/ls1043aqds.c > @@ -13,6 +13,9 @@ > #include > #include > #include > +#ifdef CONFIG_TFABOOT Do you have to use ifdef here? > +#include > +#endif York