usb: host: ehci-orion: Remove redundant use of of_match_ptr

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

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Tzachi Perelstein <tzachi@marvell.com>
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:18 +05:30 committed by Greg Kroah-Hartman
parent 2c398f3e4a
commit a703d7e279

View file

@ -303,7 +303,7 @@ static struct platform_driver ehci_orion_driver = {
.driver = {
.name = "orion-ehci",
.owner = THIS_MODULE,
.of_match_table = of_match_ptr(ehci_orion_dt_ids),
.of_match_table = ehci_orion_dt_ids,
},
};