ALSA: sound/aoa/codecs/onyx.c: use static const for texts
authorFabian Frederick <fabf@skynet.be>
Tue, 27 May 2014 07:12:18 +0000 (09:12 +0200)
committerTakashi Iwai <tiwai@suse.de>
Tue, 27 May 2014 09:58:55 +0000 (11:58 +0200)
'texts' is only used as source in strcpy

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/aoa/codecs/onyx.c

index f01bffb702bc3d84544b0a29e12a158eb38805d1..401107b85d300afa972a3cdc858311865cd56699 100644 (file)
@@ -241,7 +241,7 @@ static struct snd_kcontrol_new inputgain_control = {
 static int onyx_snd_capture_source_info(struct snd_kcontrol *kcontrol,
        struct snd_ctl_elem_info *uinfo)
 {
-       static char *texts[] = { "Line-In", "Microphone" };
+       static const char * const texts[] = { "Line-In", "Microphone" };
 
        uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
        uinfo->count = 1;