From: Sachin Kamat Date: Mon, 21 Oct 2013 09:06:43 +0000 (+0530) Subject: PCI: exynos: Remove redundant of_match_ptr X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=eb36309a9db9e9e8e8e0813ebbe3a14a58969351;p=linux-beck.git PCI: exynos: Remove redundant of_match_ptr This driver is DT only. Hence of_match_ptr is not required. Signed-off-by: Sachin Kamat Signed-off-by: Bjorn Helgaas Acked-by: Jingoo Han --- diff --git a/drivers/pci/host/pci-exynos.c b/drivers/pci/host/pci-exynos.c index 89804728bd5b..24beed38ddc7 100644 --- a/drivers/pci/host/pci-exynos.c +++ b/drivers/pci/host/pci-exynos.c @@ -653,7 +653,7 @@ static struct platform_driver exynos_pcie_driver = { .driver = { .name = "exynos-pcie", .owner = THIS_MODULE, - .of_match_table = of_match_ptr(exynos_pcie_of_match), + .of_match_table = exynos_pcie_of_match, }, };