aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/dwc3/dwc3-omap.c
diff options
context:
space:
mode:
authorFelipe Balbi <balbi@ti.com>2013-02-11 03:31:15 -0500
committerFelipe Balbi <balbi@ti.com>2013-03-04 02:33:23 -0500
commit2c2dc89cc5d68ca161d50011cdcbf8aa830b9498 (patch)
treeb445c1cb7d0f6ba8a76828ed73a796c771d27d95 /drivers/usb/dwc3/dwc3-omap.c
parentd9b4330adec006c2e8907bdcacd9dcc0e8874d18 (diff)
usb: dwc3: omap: fix a typo on of_device_id
s/matach/match No functional changes Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/dwc3/dwc3-omap.c')
-rw-r--r--drivers/usb/dwc3/dwc3-omap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/dwc3/dwc3-omap.c b/drivers/usb/dwc3/dwc3-omap.c
index 22f337f57219..90171f7ccf8d 100644
--- a/drivers/usb/dwc3/dwc3-omap.c
+++ b/drivers/usb/dwc3/dwc3-omap.c
@@ -465,20 +465,20 @@ static int dwc3_omap_remove(struct platform_device *pdev)
465 return 0; 465 return 0;
466} 466}
467 467
468static const struct of_device_id of_dwc3_matach[] = { 468static const struct of_device_id of_dwc3_match[] = {
469 { 469 {
470 "ti,dwc3", 470 "ti,dwc3",
471 }, 471 },
472 { }, 472 { },
473}; 473};
474MODULE_DEVICE_TABLE(of, of_dwc3_matach); 474MODULE_DEVICE_TABLE(of, of_dwc3_match);
475 475
476static struct platform_driver dwc3_omap_driver = { 476static struct platform_driver dwc3_omap_driver = {
477 .probe = dwc3_omap_probe, 477 .probe = dwc3_omap_probe,
478 .remove = dwc3_omap_remove, 478 .remove = dwc3_omap_remove,
479 .driver = { 479 .driver = {
480 .name = "omap-dwc3", 480 .name = "omap-dwc3",
481 .of_match_table = of_dwc3_matach, 481 .of_match_table = of_dwc3_match,
482 }, 482 },
483}; 483};
484 484