mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-22 08:44:20 -05:00
usb: gadget: udc: atmel: constify copied structure
The usba_gadget_template structure is only copied into another structure, so make it const. The opportunity for this change was found using Coccinelle. Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr> Acked-by: Cristian Birsan <cristian.birsan@microchip.com> Link: https://lore.kernel.org/r/1577864614-5543-5-git-send-email-Julia.Lawall@inria.fr Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
17da9b8e5a
commit
0e84f2fd0d
@@ -1122,7 +1122,7 @@ static struct usb_endpoint_descriptor usba_ep0_desc = {
|
||||
.bInterval = 1,
|
||||
};
|
||||
|
||||
static struct usb_gadget usba_gadget_template = {
|
||||
static const struct usb_gadget usba_gadget_template = {
|
||||
.ops = &usba_udc_ops,
|
||||
.max_speed = USB_SPEED_HIGH,
|
||||
.name = "atmel_usba_udc",
|
||||
|
||||
Reference in New Issue
Block a user