projects
/
GitHub
/
LineageOS
/
android_kernel_samsung_universal7580.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d9b4330
)
usb: dwc3: omap: fix a typo on of_device_id
author
Felipe Balbi
<balbi@ti.com>
Mon, 11 Feb 2013 08:31:15 +0000
(10:31 +0200)
committer
Felipe Balbi
<balbi@ti.com>
Mon, 4 Mar 2013 07:33:23 +0000
(09:33 +0200)
s/matach/match
No functional changes
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/dwc3/dwc3-omap.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/usb/dwc3/dwc3-omap.c
b/drivers/usb/dwc3/dwc3-omap.c
index 22f337f572190234c4f75fd06a78b14ce4a2faf9..90171f7ccf8d862970365a2fc9ee7d1c3972eb6f 100644
(file)
--- 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_mat
a
ch[] = {
+static const struct of_device_id of_dwc3_match[] = {
{
"ti,dwc3",
},
{ },
};
-MODULE_DEVICE_TABLE(of, of_dwc3_mat
a
ch);
+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_mat
a
ch,
+ .of_match_table = of_dwc3_match,
},
};