From: Stephen Warren Date: Tue, 28 Aug 2012 06:27:11 +0000 (-0700) Subject: gpio: tegra: remove useless includes of X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=70a5dbf8120dcbba7f0720a51dae2258f9bc7893;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git gpio: tegra: remove useless includes of Nothing from these files is needed, so remove the includes. This helps single zImage work by reducing use of the mach-tegra/include/mach/ directory. Signed-off-by: Stephen Warren Acked-by: Linus Walleij --- diff --git a/drivers/gpio/gpio-tegra.c b/drivers/gpio/gpio-tegra.c index dc5184d57892..d982593d7563 100644 --- a/drivers/gpio/gpio-tegra.c +++ b/drivers/gpio/gpio-tegra.c @@ -30,9 +30,6 @@ #include -#include -#include - #define GPIO_BANK(x) ((x) >> 5) #define GPIO_PORT(x) (((x) >> 3) & 0x3) #define GPIO_BIT(x) ((x) & 0x7)