diff mbox

[1/3] mmc: davinci: Remove redundant of_match_ptr

Message ID 1380517173-10537-1-git-send-email-sachin.kamat@linaro.org (mailing list archive)
State New, archived
Headers show

Commit Message

Sachin Kamat Sept. 30, 2013, 4:59 a.m. UTC
The data structure of_match_ptr() protects is always compiled in.
Hence of_match_ptr() is not needed.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 drivers/mmc/host/davinci_mmc.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Sachin Kamat Oct. 21, 2013, 3:07 a.m. UTC | #1
On 30 September 2013 10:29, Sachin Kamat <sachin.kamat@linaro.org> wrote:
> The data structure of_match_ptr() protects is always compiled in.
> Hence of_match_ptr() is not needed.
>
> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
> ---
>  drivers/mmc/host/davinci_mmc.c |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/mmc/host/davinci_mmc.c b/drivers/mmc/host/davinci_mmc.c
> index e9fa87d..39b311e 100644
> --- a/drivers/mmc/host/davinci_mmc.c
> +++ b/drivers/mmc/host/davinci_mmc.c
> @@ -1193,7 +1193,7 @@ static struct davinci_mmc_config
>         struct device_node *np;
>         struct davinci_mmc_config *pdata = pdev->dev.platform_data;
>         const struct of_device_id *match =
> -               of_match_device(of_match_ptr(davinci_mmc_dt_ids), &pdev->dev);
> +               of_match_device(davinci_mmc_dt_ids, &pdev->dev);
>         u32 data;
>
>         np = pdev->dev.of_node;
> @@ -1484,7 +1484,7 @@ static struct platform_driver davinci_mmcsd_driver = {
>                 .name   = "davinci_mmc",
>                 .owner  = THIS_MODULE,
>                 .pm     = davinci_mmcsd_pm_ops,
> -               .of_match_table = of_match_ptr(davinci_mmc_dt_ids),
> +               .of_match_table = davinci_mmc_dt_ids,
>         },
>         .remove         = __exit_p(davinci_mmcsd_remove),
>         .id_table       = davinci_mmc_devtype,
> --
> 1.7.9.5
>

Gentle ping on this series, Chris.
diff mbox

Patch

diff --git a/drivers/mmc/host/davinci_mmc.c b/drivers/mmc/host/davinci_mmc.c
index e9fa87d..39b311e 100644
--- a/drivers/mmc/host/davinci_mmc.c
+++ b/drivers/mmc/host/davinci_mmc.c
@@ -1193,7 +1193,7 @@  static struct davinci_mmc_config
 	struct device_node *np;
 	struct davinci_mmc_config *pdata = pdev->dev.platform_data;
 	const struct of_device_id *match =
-		of_match_device(of_match_ptr(davinci_mmc_dt_ids), &pdev->dev);
+		of_match_device(davinci_mmc_dt_ids, &pdev->dev);
 	u32 data;
 
 	np = pdev->dev.of_node;
@@ -1484,7 +1484,7 @@  static struct platform_driver davinci_mmcsd_driver = {
 		.name	= "davinci_mmc",
 		.owner	= THIS_MODULE,
 		.pm	= davinci_mmcsd_pm_ops,
-		.of_match_table = of_match_ptr(davinci_mmc_dt_ids),
+		.of_match_table = davinci_mmc_dt_ids,
 	},
 	.remove		= __exit_p(davinci_mmcsd_remove),
 	.id_table	= davinci_mmc_devtype,