diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2022-06-28 22:39:03 +0300 |
---|---|---|
committer | Bartosz Golaszewski <brgl@bgdev.pl> | 2022-07-19 09:57:13 +0200 |
commit | 4a40ccccb660d9e62fe9f4a157be8d3c3a5ca013 (patch) | |
tree | f894099ad6a0dca38781f8506e4d99b8c44a7749 /drivers/gpio | |
parent | cc165ba48aaf7d792e99d0c7e4b12e9625bc73e3 (diff) | |
download | lwn-4a40ccccb660d9e62fe9f4a157be8d3c3a5ca013.tar.gz lwn-4a40ccccb660d9e62fe9f4a157be8d3c3a5ca013.zip |
gpio: adp5588: Switch from of headers to mod_devicetable.h
There is nothing directly using of specific interfaces in this driver,
so lets not include the headers.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpio-adp5588.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/gpio/gpio-adp5588.c b/drivers/gpio/gpio-adp5588.c index e388e75103f4..51ed23ba4645 100644 --- a/drivers/gpio/gpio-adp5588.c +++ b/drivers/gpio/gpio-adp5588.c @@ -6,7 +6,6 @@ * Copyright 2009-2010 Analog Devices Inc. */ -#include <linux/module.h> #include <linux/kernel.h> #include <linux/slab.h> #include <linux/init.h> @@ -14,7 +13,8 @@ #include <linux/gpio/driver.h> #include <linux/interrupt.h> #include <linux/irq.h> -#include <linux/of_device.h> +#include <linux/mod_devicetable.h> +#include <linux/module.h> #include <linux/platform_data/adp5588.h> @@ -427,18 +427,16 @@ static const struct i2c_device_id adp5588_gpio_id[] = { }; MODULE_DEVICE_TABLE(i2c, adp5588_gpio_id); -#ifdef CONFIG_OF static const struct of_device_id adp5588_gpio_of_id[] = { { .compatible = "adi," DRV_NAME, }, {}, }; MODULE_DEVICE_TABLE(of, adp5588_gpio_of_id); -#endif static struct i2c_driver adp5588_gpio_driver = { .driver = { .name = DRV_NAME, - .of_match_table = of_match_ptr(adp5588_gpio_of_id), + .of_match_table = adp5588_gpio_of_id, }, .probe_new = adp5588_gpio_probe, .remove = adp5588_gpio_remove, |