All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 1/3] gpio: adp5588: Switch from of headers to mod_devicetable.h
@ 2022-06-28 19:39 Andy Shevchenko
  2022-06-28 19:39 ` [PATCH v1 2/3] gpio: adp5588: Do not use defined value for driver name and compatible Andy Shevchenko
                   ` (3 more replies)
  0 siblings, 4 replies; 14+ messages in thread
From: Andy Shevchenko @ 2022-06-28 19:39 UTC (permalink / raw)
  To: Andy Shevchenko, linux-gpio, linux-kernel
  Cc: Michael Hennerich, Linus Walleij, Bartosz Golaszewski

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>
---
 drivers/gpio/gpio-adp5588.c | 8 +++-----
 1 file 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,
-- 
2.35.1


^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2022-07-06 12:24 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-28 19:39 [PATCH v1 1/3] gpio: adp5588: Switch from of headers to mod_devicetable.h Andy Shevchenko
2022-06-28 19:39 ` [PATCH v1 2/3] gpio: adp5588: Do not use defined value for driver name and compatible Andy Shevchenko
2022-06-30 11:58   ` Linus Walleij
2022-06-28 19:39 ` [PATCH v1 3/3] gpio: adp5588: sort header inclusion alphabetically Andy Shevchenko
2022-06-29  8:40   ` Hennerich, Michael
2022-06-29  9:59     ` Andy Shevchenko
2022-06-29 10:09       ` Sa, Nuno
2022-06-29 10:33         ` Andy Shevchenko
2022-06-29 10:34           ` Andy Shevchenko
2022-06-29 10:40           ` Sa, Nuno
2022-07-06 12:15             ` Andy Shevchenko
2022-07-06 12:24               ` Bartosz Golaszewski
2022-06-30 11:57 ` [PATCH v1 1/3] gpio: adp5588: Switch from of headers to mod_devicetable.h Linus Walleij
2022-07-06 12:23 ` Bartosz Golaszewski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.