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

Commit 5462b0db authored by Sachin Kamat's avatar Sachin Kamat Committed by Greg Kroah-Hartman
Browse files

usb: phy: phy-nop: Remove redundant use of of_match_ptr



'nop_xceiv_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 5d689168
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -272,7 +272,7 @@ static struct platform_driver nop_usb_xceiv_driver = {
	.driver		= {
		.name	= "nop_usb_xceiv",
		.owner	= THIS_MODULE,
		.of_match_table = of_match_ptr(nop_xceiv_dt_ids),
		.of_match_table = nop_xceiv_dt_ids,
	},
};