usb: host: ohci-omap3: Remove redundant use of of_match_ptr

'omap_ohci_dt_ids' is always compiled in. Hence use of
of_match_ptr is unnecessary.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Sachin Kamat 2013-05-21 17:17:19 +05:30 committed by Greg Kroah-Hartman
parent a703d7e279
commit 7a1cc240d2

View file

@ -252,7 +252,7 @@ static struct platform_driver ohci_hcd_omap3_driver = {
.shutdown = ohci_hcd_omap3_shutdown,
.driver = {
.name = "ohci-omap3",
.of_match_table = of_match_ptr(omap_ohci_dt_ids),
.of_match_table = omap_ohci_dt_ids,
},
};