Commit f418dde0 authored by Bartosz Golaszewski's avatar Bartosz Golaszewski Committed by Ulf Hansson
Browse files

mmc: davinci: use generic device_get_match_data()



There's no reason for this driver to use the OF-specific variant so
switch to using the generic device_get_match_data() helper instead.

Signed-off-by: default avatarBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Link: https://lore.kernel.org/r/20241007114918.52066-2-brgl@bgdev.pl


Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 071a18b8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -21,9 +21,9 @@
#include <linux/mmc/mmc.h>
#include <linux/mmc/slot-gpio.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/platform_data/mmc-davinci.h>
#include <linux/platform_device.h>
#include <linux/property.h>

/*
 * Register Definitions
@@ -1228,7 +1228,7 @@ static int davinci_mmcsd_probe(struct platform_device *pdev)

	host->mmc_input_clk = clk_get_rate(host->clk);

	pdev->id_entry = of_device_get_match_data(&pdev->dev);
	pdev->id_entry = device_get_match_data(&pdev->dev);
	if (pdev->id_entry) {
		ret = mmc_of_parse(mmc);
		if (ret) {