Commit eb085875 authored by Muhammad Husaini Zulkifli's avatar Muhammad Husaini Zulkifli Committed by Ulf Hansson
Browse files

mmc: sdhci-of-arasan: use of_device_get_match_data()

parent edee82f7
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -1507,7 +1507,6 @@ static int sdhci_arasan_add_host(struct sdhci_arasan_data *sdhci_arasan)
static int sdhci_arasan_probe(struct platform_device *pdev)
{
	int ret;
	const struct of_device_id *match;
	struct device_node *node;
	struct clk *clk_xin;
	struct sdhci_host *host;
@@ -1516,8 +1515,7 @@ static int sdhci_arasan_probe(struct platform_device *pdev)
	struct device_node *np = pdev->dev.of_node;
	const struct sdhci_arasan_of_data *data;

	match = of_match_node(sdhci_arasan_of_match, pdev->dev.of_node);
	data = match->data;
	data = of_device_get_match_data(&pdev->dev);
	host = sdhci_pltfm_init(pdev, data->pdata, sizeof(*sdhci_arasan));

	if (IS_ERR(host))