diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2024-03-11 10:45:58 +0100 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2024-03-11 13:57:18 +0100 |
commit | 074fe32e9af1b8720eaf89e069b98ac567e90b99 (patch) | |
tree | 307bb7c0ea96776e2c9383e0cb3943ce6d606151 /arch/mips/ralink | |
parent | mips: sibyte: make tb_class constant (diff) | |
download | linux-074fe32e9af1b8720eaf89e069b98ac567e90b99.tar.xz linux-074fe32e9af1b8720eaf89e069b98ac567e90b99.zip |
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>
Diffstat (limited to 'arch/mips/ralink')
-rw-r--r-- | arch/mips/ralink/timer.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/arch/mips/ralink/timer.c b/arch/mips/ralink/timer.c index 8b485cbe854e..54094f6e033e 100644 --- a/arch/mips/ralink/timer.c +++ b/arch/mips/ralink/timer.c @@ -6,10 +6,16 @@ * Copyright (C) 2013 John Crispin <john@phrozen.org> */ -#include <linux/platform_device.h> +#include <linux/bits.h> +#include <linux/clk.h> +#include <linux/device.h> +#include <linux/err.h> #include <linux/interrupt.h> +#include <linux/io.h> +#include <linux/mod_devicetable.h> +#include <linux/platform_device.h> #include <linux/timer.h> -#include <linux/clk.h> +#include <linux/types.h> #include <asm/mach-ralink/ralink_regs.h> |