Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6fad5128 authored by Sachin Kamat's avatar Sachin Kamat Committed by Chris Ball
Browse files

mmc: davinci: Remove redundant of_match_ptr



The data structure of_match_ptr() protects is always compiled in.
Hence of_match_ptr() is not needed.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarChris Ball <chris@printf.net>
parent eab36b24
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1192,7 +1192,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;
@@ -1468,7 +1468,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,