diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-10-03 15:10:11 +0300 |
---|---|---|
committer | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-10-03 16:29:30 +0300 |
commit | f29047a09b5ed3265a5af68626e40ff772e5e07e (patch) | |
tree | 088075b7d4bd32ad03395b15b308a2a03ad7c750 | |
parent | 82cc14c9930c7613da2fcb41a8d4f90c8b4cb048 (diff) | |
download | lwn-f29047a09b5ed3265a5af68626e40ff772e5e07e.tar.gz lwn-f29047a09b5ed3265a5af68626e40ff772e5e07e.zip |
pinctrl: intel: Replace kernel.h by what is actually being used
The kernel.h is a mess of unrelated things and we only used it
as a proxy to array_size.h, hence switch from former to the latter.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
-rw-r--r-- | drivers/pinctrl/intel/pinctrl-intel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/intel/pinctrl-intel.h b/drivers/pinctrl/intel/pinctrl-intel.h index cee512f97b56..2bb553598e8b 100644 --- a/drivers/pinctrl/intel/pinctrl-intel.h +++ b/drivers/pinctrl/intel/pinctrl-intel.h @@ -10,11 +10,11 @@ #ifndef PINCTRL_INTEL_H #define PINCTRL_INTEL_H +#include <linux/array_size.h> #include <linux/bits.h> #include <linux/compiler_types.h> #include <linux/gpio/driver.h> #include <linux/irq.h> -#include <linux/kernel.h> #include <linux/pm.h> #include <linux/pinctrl/pinctrl.h> #include <linux/spinlock_types.h> |