Commit ae5e5f7b authored by Sachin Kamat's avatar Sachin Kamat Committed by Greg Kroah-Hartman

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

'vt8500_ehci_ids' is always compiled in. Hence use of
of_match_ptr is unnecessary.
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Acked-by: default avatarAlan Stern <stern@rowland.harvard.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent be4b08cc
...@@ -223,7 +223,7 @@ static struct platform_driver ehci_platform_driver = { ...@@ -223,7 +223,7 @@ static struct platform_driver ehci_platform_driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.name = "ehci-platform", .name = "ehci-platform",
.pm = &ehci_platform_pm_ops, .pm = &ehci_platform_pm_ops,
.of_match_table = of_match_ptr(vt8500_ehci_ids), .of_match_table = vt8500_ehci_ids,
} }
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment