From: Randy Dunlap <[email protected]> arch/arm/plat-samsung/adc.c needs to #include <linux/mod_devicetable.h> explicitly since that header file was removed from <linux/platform_device.h> (it wasn't needed there).
Reported-by: kbuild test robot <[email protected]> Signed-off-by: Randy Dunlap <[email protected]> --- arch/arm/plat-samsung/adc.c | 1 + 1 file changed, 1 insertion(+) --- linux-next-20180706.orig/arch/arm/plat-samsung/adc.c +++ linux-next-20180706/arch/arm/plat-samsung/adc.c @@ -8,6 +8,7 @@ #include <linux/module.h> #include <linux/kernel.h> +#include <linux/mod_devicetable.h> #include <linux/platform_device.h> #include <linux/sched.h> #include <linux/list.h>

