From mboxrd@z Thu Jan 1 00:00:00 1970 From: arnd@arndb.de (Arnd Bergmann) Date: Mon, 26 May 2014 17:04:24 +0200 Subject: [PATCH] gpio: pch: include linux/slab.h Message-ID: <8665687.jWqf6bo4lM@wuerfel> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org The gpio-pch driver was recently enabled for compile-tests, which revealed that it is missing an include for linux/slab.h, which on ARM is not implied by any of the other headers. Signed-off-by: Arnd Bergmann diff --git a/drivers/gpio/gpio-pch.c b/drivers/gpio/gpio-pch.c index 83a1563..d6eac9b 100644 --- a/drivers/gpio/gpio-pch.c +++ b/drivers/gpio/gpio-pch.c @@ -20,6 +20,7 @@ #include #include #include +#include #define PCH_EDGE_FALLING 0 #define PCH_EDGE_RISING BIT(0)