diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-12-21 04:50:07 -0500 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-12-23 11:13:33 -0500 |
commit | ed40082da0a0bfbcab979952d1b6d122cb5fb67b (patch) | |
tree | fb68bd7dce94303fd12669ea5e1e0fe7148b7763 /drivers/usb/phy | |
parent | 16da4b174b08c42076cd3384c420f352c909d467 (diff) |
usb: phy-keystone: Remove redundant of_match_ptr helper
'keystone_usbphy_ids' is always compiled in. Hence the
helper macro is not needed.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: WingMan Kwok <w-kwok2@ti.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/phy')
-rw-r--r-- | drivers/usb/phy/phy-keystone.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/phy/phy-keystone.c b/drivers/usb/phy/phy-keystone.c index 533db1284ce7..ee1d03b802e1 100644 --- a/drivers/usb/phy/phy-keystone.c +++ b/drivers/usb/phy/phy-keystone.c | |||
@@ -129,7 +129,7 @@ static struct platform_driver keystone_usbphy_driver = { | |||
129 | .driver = { | 129 | .driver = { |
130 | .name = "keystone-usbphy", | 130 | .name = "keystone-usbphy", |
131 | .owner = THIS_MODULE, | 131 | .owner = THIS_MODULE, |
132 | .of_match_table = of_match_ptr(keystone_usbphy_ids), | 132 | .of_match_table = keystone_usbphy_ids, |
133 | }, | 133 | }, |
134 | }; | 134 | }; |
135 | 135 | ||