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

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

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Viresh Kumar <viresh.kumar@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:17 +05:30 committed by Greg Kroah-Hartman
parent ae5e5f7bda
commit 2c398f3e4a
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ static struct platform_driver spear_ehci_hcd_driver = {
.name = "spear-ehci", .name = "spear-ehci",
.bus = &platform_bus_type, .bus = &platform_bus_type,
.pm = &ehci_spear_pm_ops, .pm = &ehci_spear_pm_ops,
.of_match_table = of_match_ptr(spear_ehci_id_table), .of_match_table = spear_ehci_id_table,
} }
}; };