diff options
author | Julia Lawall <[email protected]> | 2016-02-18 17:55:50 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2016-03-03 19:44:06 -0800 |
commit | ff075d670cbee4aa969d98298eaa23bc035d201a (patch) | |
tree | 7e41ee175c4cf0fe91fa41fe365420860d079041 | |
parent | f1bbdc3b0402061ac52fc1b34cc018b0c227f4a4 (diff) |
usb: host: xhci-plat: fix of_table.cocci warnings
Make sure (of/i2c/platform)_device_id tables are NULL terminated
Generated by: scripts/coccinelle/misc/of_table.cocci
Signed-off-by: Fengguang Wu <[email protected]>
Signed-off-by: Julia Lawall <[email protected]>
Signed-off-by: Mathias Nyman <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/usb/host/xhci-plat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/host/xhci-plat.c b/drivers/usb/host/xhci-plat.c index 3aede6eb9637..5c15e9bc5f7a 100644 --- a/drivers/usb/host/xhci-plat.c +++ b/drivers/usb/host/xhci-plat.c @@ -116,6 +116,7 @@ static const struct of_device_id usb_xhci_of_match[] = { .compatible = "renesas,rcar-gen3-xhci", .data = &xhci_plat_renesas_rcar_gen3, }, + {}, }; MODULE_DEVICE_TABLE(of, usb_xhci_of_match); #endif |