diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-09-30 00:14:44 -0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-10-01 10:56:23 -0400 |
commit | b432cb837480d7b93f95c2c5766828e9ac7f036a (patch) | |
tree | a7ca5bfa143a774d47e368f0846b5c67b6d60aba /drivers/usb/musb | |
parent | 4610f19b4a7b0566f39aca490f7dde5b68e10243 (diff) |
usb: musb_dsps: 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>
Cc: Ravi B <ravibabu@ti.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/musb')
-rw-r--r-- | drivers/usb/musb/musb_dsps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/musb/musb_dsps.c b/drivers/usb/musb/musb_dsps.c index 4047cbb91bac..c7fe16db6bb6 100644 --- a/drivers/usb/musb/musb_dsps.c +++ b/drivers/usb/musb/musb_dsps.c | |||
@@ -628,7 +628,7 @@ static struct platform_driver dsps_usbss_driver = { | |||
628 | .remove = dsps_remove, | 628 | .remove = dsps_remove, |
629 | .driver = { | 629 | .driver = { |
630 | .name = "musb-dsps", | 630 | .name = "musb-dsps", |
631 | .of_match_table = of_match_ptr(musb_dsps_of_match), | 631 | .of_match_table = musb_dsps_of_match, |
632 | }, | 632 | }, |
633 | }; | 633 | }; |
634 | 634 | ||