diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-03-14 11:55:09 +0100 |
---|---|---|
committer | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-03-23 15:22:18 +0100 |
commit | 2ffd04ca2ae66c274eb116d5f0330af14cb63383 (patch) | |
tree | ff2a83c0cc0c4fe77751ae0b198c1d1ffead40bc /drivers/gpio | |
parent | sh: mach-x3proto: Add missing #include <linux/gpio/driver.h> (diff) | |
download | linux-2ffd04ca2ae66c274eb116d5f0330af14cb63383.tar.xz linux-2ffd04ca2ae66c274eb116d5f0330af14cb63383.zip |
gpio: mm-lantiq: Fix typo in the newly added header filename
The header with legacy struct of_mmio_gpio_chip and accompanying
APIs is called legacy-of-mm-gpiochip.h. Remove repetitive '.h'
at the end.
Fixes: a99cc66807d6 ("gpiolib: split of_mm_gpio_chip out of linux/of_gpio.h")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpio-mm-lantiq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-mm-lantiq.c b/drivers/gpio/gpio-mm-lantiq.c index 27ff84c5d162..f3c158259636 100644 --- a/drivers/gpio/gpio-mm-lantiq.c +++ b/drivers/gpio/gpio-mm-lantiq.c @@ -10,7 +10,7 @@ #include <linux/platform_device.h> #include <linux/mutex.h> #include <linux/gpio/driver.h> -#include <linux/gpio/legacy-of-mm-gpiochip.h.h> +#include <linux/gpio/legacy-of-mm-gpiochip.h> #include <linux/of.h> #include <linux/io.h> #include <linux/slab.h> |