diff options
author | Takashi Iwai <tiwai@suse.de> | 2014-10-21 08:51:45 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-10-21 08:51:45 +0200 |
commit | 1bc10bb68d348078af0eb8b64292ec542dcd7634 (patch) | |
tree | 5f17afb80a52830cc99e2decefbd3d57b0dc53ff /sound/pci/ac97/ac97_patch.h | |
parent | 3b7a00dc9e4277d6fcad68dd1db35f77264ede5f (diff) | |
download | linux-1bc10bb68d348078af0eb8b64292ec542dcd7634.tar.gz linux-1bc10bb68d348078af0eb8b64292ec542dcd7634.tar.bz2 linux-1bc10bb68d348078af0eb8b64292ec542dcd7634.zip |
ALSA: ac97: Constify more text arrays
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ac97/ac97_patch.h')
-rw-r--r-- | sound/pci/ac97/ac97_patch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/ac97/ac97_patch.h b/sound/pci/ac97/ac97_patch.h index 47bf8dfe8276..d1ce151fe722 100644 --- a/sound/pci/ac97/ac97_patch.h +++ b/sound/pci/ac97/ac97_patch.h @@ -49,7 +49,7 @@ struct ac97_enum { unsigned char shift_l; unsigned char shift_r; unsigned short mask; - const char **texts; + const char * const *texts; }; #define AC97_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmask, xtexts) \ |