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

watchdog: it87_wdt: Don't use "proxy" headers

Update header inclusions to follow IWYU (Include What You Use)
principle.

Note that kernel.h is discouraged to be included as it's written
at the top of that file.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/20250708133646.70384-2-andriy.shevchenko@linux.intel.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>

authored by

Andy Shevchenko and committed by
Wim Van Sebroeck
6a4a2d5c 801c6592

+3 -1
+3 -1
drivers/watchdog/it87_wdt.c
··· 22 22 23 23 #include <linux/bits.h> 24 24 #include <linux/dmi.h> 25 + #include <linux/errno.h> 25 26 #include <linux/init.h> 26 27 #include <linux/io.h> 27 - #include <linux/kernel.h> 28 + #include <linux/ioport.h> 28 29 #include <linux/module.h> 29 30 #include <linux/moduleparam.h> 31 + #include <linux/printk.h> 30 32 #include <linux/types.h> 31 33 #include <linux/watchdog.h> 32 34