Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5d689168 authored by Sachin Kamat's avatar Sachin Kamat Committed by Greg Kroah-Hartman
Browse files

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: default avatarSachin Kamat <sachin.kamat@linaro.org>
Cc: Tony Prisk <linux@prisktech.co.nz>
Acked-by: default avatarAlan Stern <stern@rowland.harvard.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c0d6f0b4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,
	},
};