diff options
author | Felipe Balbi <balbi@ti.com> | 2013-02-11 09:31:15 +0100 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-03-04 08:33:23 +0100 |
commit | 2c2dc89cc5d68ca161d50011cdcbf8aa830b9498 (patch) | |
tree | b445c1cb7d0f6ba8a76828ed73a796c771d27d95 /drivers | |
parent | usb: dwc3: core: don't forget to free coherent memory (diff) | |
download | linux-2c2dc89cc5d68ca161d50011cdcbf8aa830b9498.tar.xz linux-2c2dc89cc5d68ca161d50011cdcbf8aa830b9498.zip |
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')
-rw-r--r-- | drivers/usb/dwc3/dwc3-omap.c | 6 |
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) return 0; } -static const struct of_device_id of_dwc3_matach[] = { +static const struct of_device_id of_dwc3_match[] = { { "ti,dwc3", }, { }, }; -MODULE_DEVICE_TABLE(of, of_dwc3_matach); +MODULE_DEVICE_TABLE(of, of_dwc3_match); static struct platform_driver dwc3_omap_driver = { .probe = dwc3_omap_probe, .remove = dwc3_omap_remove, .driver = { .name = "omap-dwc3", - .of_match_table = of_dwc3_matach, + .of_match_table = of_dwc3_match, }, }; |