Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ARM: s3c64xx: Use the right include

The file s3c64xx.c is including <linux/gpio.h> despite using no
symbols from the file, however it needs it to implicitly bring in
of_have_populated_dt() so include <linux/of.h> explicitly instead.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

authored by

Linus Walleij and committed by
Andy Shevchenko
7a49bfde d1143d50

+1 -1
+1 -1
arch/arm/mach-s3c/s3c64xx.c
··· 21 21 #include <linux/ioport.h> 22 22 #include <linux/serial_core.h> 23 23 #include <linux/serial_s3c.h> 24 + #include <linux/of.h> 24 25 #include <linux/platform_device.h> 25 26 #include <linux/reboot.h> 26 27 #include <linux/io.h> 27 28 #include <linux/clk/samsung.h> 28 29 #include <linux/dma-mapping.h> 29 30 #include <linux/irq.h> 30 - #include <linux/gpio.h> 31 31 #include <linux/irqchip/arm-vic.h> 32 32 #include <clocksource/samsung_pwm.h> 33 33