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

Commit 7a1cc240 authored by Sachin Kamat's avatar Sachin Kamat Committed by Greg Kroah-Hartman
Browse files

usb: host: ohci-omap3: Remove redundant use of of_match_ptr



'omap_ohci_dt_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 a703d7e2
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -252,7 +252,7 @@ static struct platform_driver ohci_hcd_omap3_driver = {
	.shutdown	= ohci_hcd_omap3_shutdown,
	.shutdown	= ohci_hcd_omap3_shutdown,
	.driver		= {
	.driver		= {
		.name	= "ohci-omap3",
		.name	= "ohci-omap3",
		.of_match_table = of_match_ptr(omap_ohci_dt_ids),
		.of_match_table = omap_ohci_dt_ids,
	},
	},
};
};