diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-10-21 14:36:43 +0530 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2013-10-29 16:13:40 -0600 |
commit | eb36309a9db9e9e8e8e0813ebbe3a14a58969351 (patch) | |
tree | 5beb75601743aace2fcf1c5f6cd697a3a8f1c03a /drivers/pci/host | |
parent | 904d0e7889933fb48d921c998fd1cabb3a9d6635 (diff) | |
download | talos-obmc-linux-eb36309a9db9e9e8e8e0813ebbe3a14a58969351.tar.gz talos-obmc-linux-eb36309a9db9e9e8e8e0813ebbe3a14a58969351.zip |
PCI: exynos: Remove redundant of_match_ptr
This driver is DT only. Hence of_match_ptr is not required.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Jingoo Han <jg1.han@samsung.com>
Diffstat (limited to 'drivers/pci/host')
-rw-r--r-- | drivers/pci/host/pci-exynos.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, }, }; |