From mboxrd@z Thu Jan 1 00:00:00 1970 From: Boris Brezillon Date: Thu, 16 Aug 2018 17:33:18 +0200 Subject: [U-Boot] [PATCH v6 06/31] mtd: fix build issue with includes In-Reply-To: <20180816153029.15521-7-miquel.raynal@bootlin.com> References: <20180816153029.15521-1-miquel.raynal@bootlin.com> <20180816153029.15521-7-miquel.raynal@bootlin.com> Message-ID: <20180816173318.63ed1aa7@bbrezillon> 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, 16 Aug 2018 17:30:04 +0200 Miquel Raynal wrote: > Fix build errors produced by mtd.h and dm/device.h if not included in > the right order. > > Signed-off-by: Miquel Raynal > Reviewed-by: Jagan Teki I'm pretty sure this patch is not needed, the build failure has been fixed in patch 5. > --- > include/linux/mtd/mtd.h | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/include/linux/mtd/mtd.h b/include/linux/mtd/mtd.h > index 73b19b57b1..272c646f9d 100644 > --- a/include/linux/mtd/mtd.h > +++ b/include/linux/mtd/mtd.h > @@ -21,6 +21,9 @@ > #include > #include > #include > +#if IS_ENABLED(CONFIG_DM) > +#include > +#endif > > #define MAX_MTD_DEVICES 32 > #endif