diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-10-14 23:48:50 -0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2013-10-23 11:21:58 -0400 |
commit | 0f54e1e129aa0c0b6fd5763295ef60ea5af13256 (patch) | |
tree | 088b1e3bf7b57829670614fd5ed1a29d9b6e7317 /drivers/mfd/omap-usb-host.c | |
parent | 131221bc5e317d9d24d7f3922cc798058cf8aadd (diff) |
mfd: omap-usb: 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 <sachin.kamat@linaro.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/omap-usb-host.c')
-rw-r--r-- | drivers/mfd/omap-usb-host.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/omap-usb-host.c b/drivers/mfd/omap-usb-host.c index 29ee54d68512..1b65ffe08ff9 100644 --- a/drivers/mfd/omap-usb-host.c +++ b/drivers/mfd/omap-usb-host.c | |||
@@ -893,7 +893,7 @@ static struct platform_driver usbhs_omap_driver = { | |||
893 | .name = (char *)usbhs_driver_name, | 893 | .name = (char *)usbhs_driver_name, |
894 | .owner = THIS_MODULE, | 894 | .owner = THIS_MODULE, |
895 | .pm = &usbhsomap_dev_pm_ops, | 895 | .pm = &usbhsomap_dev_pm_ops, |
896 | .of_match_table = of_match_ptr(usbhs_omap_dt_ids), | 896 | .of_match_table = usbhs_omap_dt_ids, |
897 | }, | 897 | }, |
898 | .remove = usbhs_omap_remove, | 898 | .remove = usbhs_omap_remove, |
899 | }; | 899 | }; |