All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] gpio: mxc: Remove unused .id_table support
@ 2020-11-16 15:44 Fabio Estevam
  2020-11-16 16:15 ` Philipp Zabel
  0 siblings, 1 reply; 3+ messages in thread
From: Fabio Estevam @ 2020-11-16 15:44 UTC (permalink / raw)
  To: linus.walleij; +Cc: linux-gpio, kernel, Fabio Estevam

Since 5.10-rc1 i.MX is a devicetree-only platform and the existing
.id_table support in this driver was only useful for old non-devicetree
platforms.

Get rid of the .id_table since it is no longer used.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 drivers/gpio/gpio-mxc.c | 29 +++++------------------------
 1 file changed, 5 insertions(+), 24 deletions(-)

diff --git a/drivers/gpio/gpio-mxc.c b/drivers/gpio/gpio-mxc.c
index 643f4c557ac2..aadc11064b74 100644
--- a/drivers/gpio/gpio-mxc.c
+++ b/drivers/gpio/gpio-mxc.c
@@ -133,30 +133,12 @@ static struct mxc_gpio_hwdata *mxc_gpio_hwdata;
 #define GPIO_INT_FALL_EDGE	(mxc_gpio_hwdata->fall_edge)
 #define GPIO_INT_BOTH_EDGES	0x4
 
-static const struct platform_device_id mxc_gpio_devtype[] = {
-	{
-		.name = "imx1-gpio",
-		.driver_data = IMX1_GPIO,
-	}, {
-		.name = "imx21-gpio",
-		.driver_data = IMX21_GPIO,
-	}, {
-		.name = "imx31-gpio",
-		.driver_data = IMX31_GPIO,
-	}, {
-		.name = "imx35-gpio",
-		.driver_data = IMX35_GPIO,
-	}, {
-		/* sentinel */
-	}
-};
-
 static const struct of_device_id mxc_gpio_dt_ids[] = {
-	{ .compatible = "fsl,imx1-gpio", .data = &mxc_gpio_devtype[IMX1_GPIO], },
-	{ .compatible = "fsl,imx21-gpio", .data = &mxc_gpio_devtype[IMX21_GPIO], },
-	{ .compatible = "fsl,imx31-gpio", .data = &mxc_gpio_devtype[IMX31_GPIO], },
-	{ .compatible = "fsl,imx35-gpio", .data = &mxc_gpio_devtype[IMX35_GPIO], },
-	{ .compatible = "fsl,imx7d-gpio", .data = &mxc_gpio_devtype[IMX35_GPIO], },
+	{ .compatible = "fsl,imx1-gpio", .data = (const void *)IMX1_GPIO },
+	{ .compatible = "fsl,imx21-gpio", .data = (const void *)IMX21_GPIO },
+	{ .compatible = "fsl,imx31-gpio", .data = (const void *)IMX31_GPIO },
+	{ .compatible = "fsl,imx35-gpio", .data = (const void *)IMX35_GPIO },
+	{ .compatible = "fsl,imx7d-gpio", .data = (const void *)IMX35_GPIO },
 	{ /* sentinel */ }
 };
 MODULE_DEVICE_TABLE(of, mxc_gpio_dt_ids);
@@ -596,7 +578,6 @@ static struct platform_driver mxc_gpio_driver = {
 		.suppress_bind_attrs = true,
 	},
 	.probe		= mxc_gpio_probe,
-	.id_table	= mxc_gpio_devtype,
 };
 
 static int __init gpio_mxc_init(void)
-- 
2.17.1


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

* Re: [PATCH] gpio: mxc: Remove unused .id_table support
  2020-11-16 15:44 [PATCH] gpio: mxc: Remove unused .id_table support Fabio Estevam
@ 2020-11-16 16:15 ` Philipp Zabel
  2020-11-16 17:55   ` Fabio Estevam
  0 siblings, 1 reply; 3+ messages in thread
From: Philipp Zabel @ 2020-11-16 16:15 UTC (permalink / raw)
  To: Fabio Estevam, linus.walleij; +Cc: linux-gpio, kernel

Hi Fabio,

On Mon, 2020-11-16 at 12:44 -0300, Fabio Estevam wrote:
> Since 5.10-rc1 i.MX is a devicetree-only platform and the existing
> .id_table support in this driver was only useful for old non-devicetree
> platforms.
> 
> Get rid of the .id_table since it is no longer used.
> 
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> ---
>  drivers/gpio/gpio-mxc.c | 29 +++++------------------------
>  1 file changed, 5 insertions(+), 24 deletions(-)
> 
> diff --git a/drivers/gpio/gpio-mxc.c b/drivers/gpio/gpio-mxc.c
> index 643f4c557ac2..aadc11064b74 100644
> --- a/drivers/gpio/gpio-mxc.c
> +++ b/drivers/gpio/gpio-mxc.c
> @@ -133,30 +133,12 @@ static struct mxc_gpio_hwdata *mxc_gpio_hwdata;
>  #define GPIO_INT_FALL_EDGE	(mxc_gpio_hwdata->fall_edge)
>  #define GPIO_INT_BOTH_EDGES	0x4
>  
> -static const struct platform_device_id mxc_gpio_devtype[] = {
> -	{
> -		.name = "imx1-gpio",
> -		.driver_data = IMX1_GPIO,
> -	}, {
> -		.name = "imx21-gpio",
> -		.driver_data = IMX21_GPIO,
> -	}, {
> -		.name = "imx31-gpio",
> -		.driver_data = IMX31_GPIO,
> -	}, {
> -		.name = "imx35-gpio",
> -		.driver_data = IMX35_GPIO,
> -	}, {
> -		/* sentinel */
> -	}
> -};
> -
>  static const struct of_device_id mxc_gpio_dt_ids[] = {
> -	{ .compatible = "fsl,imx1-gpio", .data = &mxc_gpio_devtype[IMX1_GPIO], },
> -	{ .compatible = "fsl,imx21-gpio", .data = &mxc_gpio_devtype[IMX21_GPIO], },
> -	{ .compatible = "fsl,imx31-gpio", .data = &mxc_gpio_devtype[IMX31_GPIO], },
> -	{ .compatible = "fsl,imx35-gpio", .data = &mxc_gpio_devtype[IMX35_GPIO], },
> -	{ .compatible = "fsl,imx7d-gpio", .data = &mxc_gpio_devtype[IMX35_GPIO], },
> +	{ .compatible = "fsl,imx1-gpio", .data = (const void *)IMX1_GPIO },
> +	{ .compatible = "fsl,imx21-gpio", .data = (const void *)IMX21_GPIO },
> +	{ .compatible = "fsl,imx31-gpio", .data = (const void *)IMX31_GPIO },
> +	{ .compatible = "fsl,imx35-gpio", .data = (const void *)IMX35_GPIO },
> +	{ .compatible = "fsl,imx7d-gpio", .data = (const void *)IMX35_GPIO },
>  	{ /* sentinel */ }
>  };
>  MODULE_DEVICE_TABLE(of, mxc_gpio_dt_ids);
> @@ -596,7 +578,6 @@ static struct platform_driver mxc_gpio_driver = {
>  		.suppress_bind_attrs = true,
>  	},
>  	.probe		= mxc_gpio_probe,
> -	.id_table	= mxc_gpio_devtype,
>  };
>  
>  static int __init gpio_mxc_init(void)

This seems to be missing conversion of the code that uses the matched
of_device_id. That currently has to expect .data to be a pointer to
struct platform_device_id.

regards
Philipp

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

* Re: [PATCH] gpio: mxc: Remove unused .id_table support
  2020-11-16 16:15 ` Philipp Zabel
@ 2020-11-16 17:55   ` Fabio Estevam
  0 siblings, 0 replies; 3+ messages in thread
From: Fabio Estevam @ 2020-11-16 17:55 UTC (permalink / raw)
  To: Philipp Zabel; +Cc: Linus Walleij, open list:GPIO SUBSYSTEM, Sascha Hauer

Hi Philipp,

On Mon, Nov 16, 2020 at 1:15 PM Philipp Zabel <p.zabel@pengutronix.de> wrote:

> This seems to be missing conversion of the code that uses the matched
> of_device_id. That currently has to expect .data to be a pointer to
> struct platform_device_id.

Ops, you are right. I realized that I tested this on an imx7ulp-evk,
which does not use the gpio mxc driver.

Fixed as per your suggestion and tested on an imx6 board now :-)

Thanks

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

end of thread, other threads:[~2020-11-16 17:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-16 15:44 [PATCH] gpio: mxc: Remove unused .id_table support Fabio Estevam
2020-11-16 16:15 ` Philipp Zabel
2020-11-16 17:55   ` Fabio Estevam

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.