From: Sachin Kamat Date: Mon, 30 Sep 2013 04:14:45 +0000 (+0530) Subject: usb: phy: am335x-control: Remove redundant of_match_ptr X-Git-Tag: firefly_0821_release~176^2~5061^2~22^2~73 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c4df9ae0d6a84890b5a877a8a32b7a7a1bca00a9;hp=b432cb837480d7b93f95c2c5766828e9ac7f036a;p=firefly-linux-kernel-4.4.55.git usb: phy: am335x-control: Remove redundant of_match_ptr The data structure of_match_ptr() protects is always compiled in. Hence of_match_ptr() is not needed. Signed-off-by: Sachin Kamat Signed-off-by: Felipe Balbi --- diff --git a/drivers/usb/phy/phy-am335x-control.c b/drivers/usb/phy/phy-am335x-control.c index 0fac976b63b5..634f49acd20e 100644 --- a/drivers/usb/phy/phy-am335x-control.c +++ b/drivers/usb/phy/phy-am335x-control.c @@ -171,7 +171,7 @@ static struct platform_driver am335x_control_driver = { .driver = { .name = "am335x-control-usb", .owner = THIS_MODULE, - .of_match_table = of_match_ptr(omap_control_usb_id_table), + .of_match_table = omap_control_usb_id_table, }, };