From mboxrd@z Thu Jan 1 00:00:00 1970 From: Balaji T K Subject: Re: [PATCH] mmc: omap_hsmmc: fix dependency on indirect header inclusion Date: Fri, 16 Aug 2013 21:59:54 +0530 Message-ID: <520E5382.1090408@ti.com> References: <1373548145-3833-1-git-send-email-balbi@ti.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1373548145-3833-1-git-send-email-balbi@ti.com> Sender: linux-omap-owner@vger.kernel.org To: cjb@laptop.org, linux-mmc@vger.kernel.org Cc: Felipe Balbi , linux-omap@vger.kernel.org, a-bindra@ti.com, Tony Lindgren , ezequiel.garcia@free-electrons.com, nm@ti.com List-Id: linux-mmc@vger.kernel.org On Thursday 11 July 2013 06:39 PM, Felipe Balbi wrote: > omap_hsmmc.c depends on being > included indirectly by another header. Once we > enable COMPILE_TEST for this driver, we might > compile under architectures which won't include > for us. In fact, one such case > is x86. > > In order to prevent compile breakages, let's > explicitly include > > Signed-off-by: Felipe Balbi > --- > > This should be applied before http://marc.info/?l=linux-omap&m=137347241524118&w=2 > in order to maintain bisectability. Thanks Felipe Acked-by: Balaji T K > > cheers > > drivers/mmc/host/omap_hsmmc.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c > index 1865321..c937ffc 100644 > --- a/drivers/mmc/host/omap_hsmmc.c > +++ b/drivers/mmc/host/omap_hsmmc.c > @@ -21,6 +21,7 @@ > #include > #include > #include > +#include > #include > #include > #include >