From: Bhumika Goyal Date: Sun, 13 Aug 2017 12:43:11 +0000 (+0530) Subject: usb: gadget: make snd_pcm_hardware const X-Git-Tag: v4.14-rc1~150^2~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2ab3c34c9c75331143d67042e826bdcde4d6ab37;p=platform%2Fkernel%2Flinux-rpi.git usb: gadget: make snd_pcm_hardware const Make this const as it is only used during a copy operation. Done using Coccinelle. Signed-off-by: Bhumika Goyal Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/gadget/function/u_audio.c b/drivers/usb/gadget/function/u_audio.c index d4caa21..3971bba 100644 --- a/drivers/usb/gadget/function/u_audio.c +++ b/drivers/usb/gadget/function/u_audio.c @@ -79,7 +79,7 @@ struct snd_uac_chip { unsigned int p_framesize; }; -static struct snd_pcm_hardware uac_pcm_hardware = { +static const struct snd_pcm_hardware uac_pcm_hardware = { .info = SNDRV_PCM_INFO_INTERLEAVED | SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_MMAP_VALID | SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME,