mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 12:14:01 +08:00
usb: dwc3: omap: fix a typo on of_device_id
s/matach/match No functional changes Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
parent
d9b4330ade
commit
2c2dc89cc5
@ -465,20 +465,20 @@ static int dwc3_omap_remove(struct platform_device *pdev)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct of_device_id of_dwc3_matach[] = {
|
static const struct of_device_id of_dwc3_match[] = {
|
||||||
{
|
{
|
||||||
"ti,dwc3",
|
"ti,dwc3",
|
||||||
},
|
},
|
||||||
{ },
|
{ },
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(of, of_dwc3_matach);
|
MODULE_DEVICE_TABLE(of, of_dwc3_match);
|
||||||
|
|
||||||
static struct platform_driver dwc3_omap_driver = {
|
static struct platform_driver dwc3_omap_driver = {
|
||||||
.probe = dwc3_omap_probe,
|
.probe = dwc3_omap_probe,
|
||||||
.remove = dwc3_omap_remove,
|
.remove = dwc3_omap_remove,
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "omap-dwc3",
|
.name = "omap-dwc3",
|
||||||
.of_match_table = of_dwc3_matach,
|
.of_match_table = of_dwc3_match,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user