diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-03-16 20:20:27 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-18 17:27:03 +0100 |
commit | f1f0b57db01d1045d163eeb05d5a4e7bd934561a (patch) | |
tree | cc65e360d09d225e3a6ede563a6060cb35600de4 | |
parent | 3370b0af910166e387cf4b3faeaa8b5f0cb53f29 (diff) | |
download | linux-f1f0b57db01d1045d163eeb05d5a4e7bd934561a.tar.bz2 |
usb: gadget: constify of_device_id array
of_device_id is always used as const.
(See driver.of_match_table and open firmware functions)
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/gadget/udc/pxa27x_udc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/udc/pxa27x_udc.c b/drivers/usb/gadget/udc/pxa27x_udc.c index 6a855fc9bd84..f0ae143dab6d 100644 --- a/drivers/usb/gadget/udc/pxa27x_udc.c +++ b/drivers/usb/gadget/udc/pxa27x_udc.c @@ -2399,7 +2399,7 @@ static struct pxa_udc memory = { }; #if defined(CONFIG_OF) -static struct of_device_id udc_pxa_dt_ids[] = { +static const struct of_device_id udc_pxa_dt_ids[] = { { .compatible = "marvell,pxa270-udc" }, {} }; |