diff mbox series

gpio: mxs: Remove unused .id_table support

Message ID 20201118191938.32693-1-festevam@gmail.com
State New
Headers show
Series gpio: mxs: Remove unused .id_table support | expand

Commit Message

Fabio Estevam Nov. 18, 2020, 7:19 p.m. UTC
mxs is a devicetree-only platform and hence it does not make use
of the id_table mechanism.

Get rid of the .id_table as it is unused.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 drivers/gpio/gpio-mxs.c | 14 --------------
 1 file changed, 14 deletions(-)

Comments

Linus Walleij Dec. 4, 2020, 8:09 a.m. UTC | #1
On Wed, Nov 18, 2020 at 8:19 PM Fabio Estevam <festevam@gmail.com> wrote:

> mxs is a devicetree-only platform and hence it does not make use
> of the id_table mechanism.
>
> Get rid of the .id_table as it is unused.
>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>

Patch applied.

Yours,
Linus Walleij
diff mbox series

Patch

diff --git a/drivers/gpio/gpio-mxs.c b/drivers/gpio/gpio-mxs.c
index c4a314c68555..dfc0c1eb1b33 100644
--- a/drivers/gpio/gpio-mxs.c
+++ b/drivers/gpio/gpio-mxs.c
@@ -254,19 +254,6 @@  static int mxs_gpio_get_direction(struct gpio_chip *gc, unsigned offset)
 	return GPIO_LINE_DIRECTION_IN;
 }
 
-static const struct platform_device_id mxs_gpio_ids[] = {
-	{
-		.name = "imx23-gpio",
-		.driver_data = IMX23_GPIO,
-	}, {
-		.name = "imx28-gpio",
-		.driver_data = IMX28_GPIO,
-	}, {
-		/* sentinel */
-	}
-};
-MODULE_DEVICE_TABLE(platform, mxs_gpio_ids);
-
 static const struct of_device_id mxs_gpio_dt_ids[] = {
 	{ .compatible = "fsl,imx23-gpio", .data = (void *) IMX23_GPIO, },
 	{ .compatible = "fsl,imx28-gpio", .data = (void *) IMX28_GPIO, },
@@ -370,7 +357,6 @@  static struct platform_driver mxs_gpio_driver = {
 		.suppress_bind_attrs = true,
 	},
 	.probe		= mxs_gpio_probe,
-	.id_table	= mxs_gpio_ids,
 };
 
 static int __init mxs_gpio_init(void)