From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ulf Hansson Subject: Re: [PATCH] mmc: mxmmc: include linux/highmem.h Date: Tue, 29 May 2018 12:35:52 +0200 Message-ID: References: <20180529103057.1378025-1-arnd@arndb.de> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: In-Reply-To: <20180529103057.1378025-1-arnd@arndb.de> Sender: linux-kernel-owner@vger.kernel.org To: Arnd Bergmann Cc: Christoph Hellwig , Linus Walleij , Russell King , Shawn Lin , Allen , "linux-mmc@vger.kernel.org" , Linux Kernel Mailing List List-Id: linux-mmc@vger.kernel.org On 29 May 2018 at 12:30, Arnd Bergmann wrote: > The highmem conversion caused a build error in some configurations: > > drivers/mmc/host/mxcmmc.c: In function 'mxcmci_transfer_data': > drivers/mmc/host/mxcmmc.c:622:10: error: implicit declaration of function 'kmap_atomic'; did you mean 'in_atomic'? [-Werror=implicit-function-declaration] > > This includes the correct header file. > > Fixes: b189e7589f6d ("mmc: mxcmmc: handle highmem pages") > Signed-off-by: Arnd Bergmann Thanks, applied for next! Kind regards Uffe > --- > drivers/mmc/host/mxcmmc.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/mmc/host/mxcmmc.c b/drivers/mmc/host/mxcmmc.c > index 150fbdba777d..d62bf7efce13 100644 > --- a/drivers/mmc/host/mxcmmc.c > +++ b/drivers/mmc/host/mxcmmc.c > @@ -21,6 +21,7 @@ > #include > #include > #include > +#include > #include > #include > #include > -- > 2.9.0 >