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

MIPS: ralink: Don't use "proxy" headers

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

Fixes: 5804be061848 ("MIPS: ralink: Remove unused of_gpio.h")
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202403090727.nLhljNp6-lkp@intel.com/
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>

authored by

Andy Shevchenko and committed by
Thomas Bogendoerfer
074fe32e 8b2de740

+9 -3
+9 -3
arch/mips/ralink/timer.c
··· 6 6 * Copyright (C) 2013 John Crispin <john@phrozen.org> 7 7 */ 8 8 9 - #include <linux/platform_device.h> 10 - #include <linux/interrupt.h> 11 - #include <linux/timer.h> 9 + #include <linux/bits.h> 12 10 #include <linux/clk.h> 11 + #include <linux/device.h> 12 + #include <linux/err.h> 13 + #include <linux/interrupt.h> 14 + #include <linux/io.h> 15 + #include <linux/mod_devicetable.h> 16 + #include <linux/platform_device.h> 17 + #include <linux/timer.h> 18 + #include <linux/types.h> 13 19 14 20 #include <asm/mach-ralink/ralink_regs.h> 15 21