usb: host: uhci-platform: Remove redundant use of of_match_ptr

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

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Tony Prisk <linux@prisktech.co.nz>
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:21 +05:30 committed by Greg Kroah-Hartman
parent c0d6f0b42e
commit 5d689168c1

View file

@ -160,6 +160,6 @@ static struct platform_driver uhci_platform_driver = {
.driver = {
.name = "platform-uhci",
.owner = THIS_MODULE,
.of_match_table = of_match_ptr(platform_uhci_ids),
.of_match_table = platform_uhci_ids,
},
};