summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorLiming Sun <lsun@mellanox.com>2018-10-19 10:26:14 -0400
committerUlf Hansson <ulf.hansson@linaro.org>2018-12-17 08:26:24 +0100
commit3df407b2a5346db1c48809706ece7a8616c79e0b (patch)
tree43abdc28127a404de75362d4e50631fc31c605bd /drivers
parent7566ec393f4161572ba6f11ad5171fd5d59b0fbd (diff)
downloadlinux-3df407b2a5346db1c48809706ece7a8616c79e0b.tar.bz2
mmc: dw_mmc-bluefield: simplify the probe() function
This commit removes the unnecessary of-node check since the dw_mci_bluefield_match[] structure has only one entry. Signed-off-by: Liming Sun <lsun@mellanox.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mmc/host/dw_mmc-bluefield.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/drivers/mmc/host/dw_mmc-bluefield.c b/drivers/mmc/host/dw_mmc-bluefield.c
index 54c3fbb4a391..ed8f2254b66a 100644
--- a/drivers/mmc/host/dw_mmc-bluefield.c
+++ b/drivers/mmc/host/dw_mmc-bluefield.c
@@ -52,16 +52,7 @@ MODULE_DEVICE_TABLE(of, dw_mci_bluefield_match);
static int dw_mci_bluefield_probe(struct platform_device *pdev)
{
- const struct dw_mci_drv_data *drv_data = NULL;
- const struct of_device_id *match;
-
- if (pdev->dev.of_node) {
- match = of_match_node(dw_mci_bluefield_match,
- pdev->dev.of_node);
- drv_data = match->data;
- }
-
- return dw_mci_pltfm_register(pdev, drv_data);
+ return dw_mci_pltfm_register(pdev, &bluefield_drv_data);
}
static struct platform_driver dw_mci_bluefield_pltfm_driver = {