From mboxrd@z Thu Jan 1 00:00:00 1970 From: York Sun Date: Wed, 3 Oct 2018 16:18:39 +0000 Subject: [U-Boot] [PATCH 15/53] net: fm: add TFABOOT support References: <20181003113736.14981-1-rajesh.bhagat@nxp.com> <20181003113736.14981-16-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:39 AM, Rajesh Bhagat wrote: > Adds TFABOOT support and allows to pick FMAN firmware > on basis of boot source. > > Signed-off-by: Pankit Garg > Signed-off-by: Rajesh Bhagat > --- > drivers/net/fm/fm.c | 104 ++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 104 insertions(+) > > diff --git a/drivers/net/fm/fm.c b/drivers/net/fm/fm.c > index 3327073bf1..427ea1a627 100644 > --- a/drivers/net/fm/fm.c > +++ b/drivers/net/fm/fm.c > @@ -11,6 +11,15 @@ > #include "fm.h" > #include /* For struct qe_firmware */ > > +#ifdef CONFIG_TFABOOT Same here. Do not use ifdef if you don't have to. York