From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott Wood Date: Sat, 28 May 2016 13:12:12 -0500 Subject: [U-Boot] [PATCH v2 14/18] at91: mtd: nand: Add dev_warn() to correct build error in driver In-Reply-To: <1462455297-23834-15-git-send-email-sjg@chromium.org> References: <1462455297-23834-15-git-send-email-sjg@chromium.org> Message-ID: <1464459132.16584.132.camel@buserror.net> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Thu, 2016-05-05 at 07:34 -0600, Simon Glass wrote: > The code does not compile if ECC is enabled. > > Signed-off-by: Andre Renaud > Signed-off-by: Simon Glass > --- > > Changes in v2: None > > drivers/mtd/nand/atmel_nand.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/mtd/nand/atmel_nand.c b/drivers/mtd/nand/atmel_nand.c > index 8fac824..15958cb 100644 > --- a/drivers/mtd/nand/atmel_nand.c > +++ b/drivers/mtd/nand/atmel_nand.c > @@ -20,6 +20,8 @@ > #include > #include > > +#define dev_warn(dev, msg...) > + > #ifdef CONFIG_ATMEL_NAND_HWECC > > /* Register access macros */ This should go in include/linux/compat.h with the others. -Scott