diff options
author | Joe Perches <joe@perches.com> | 2015-04-04 13:38:25 -0700 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-04-05 08:41:05 +0200 |
commit | eab0fbfa41040f4f76b173cad17c0c8ed40cba33 (patch) | |
tree | 1c7764baebbae8d1c22f6d1fa26cb96c91d4334a /sound/pci/cs5535audio | |
parent | 751e2216899cb143fe1d5909fe762870faa945f6 (diff) | |
download | op-kernel-dev-eab0fbfa41040f4f76b173cad17c0c8ed40cba33.zip op-kernel-dev-eab0fbfa41040f4f76b173cad17c0c8ed40cba33.tar.gz |
ALSA: Use const struct ac97_quirk
Use const to reduce data by ~3Kb.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/cs5535audio')
-rw-r--r-- | sound/pci/cs5535audio/cs5535audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/cs5535audio/cs5535audio.c b/sound/pci/cs5535audio/cs5535audio.c index 802c33f..963b912 100644 --- a/sound/pci/cs5535audio/cs5535audio.c +++ b/sound/pci/cs5535audio/cs5535audio.c @@ -43,7 +43,7 @@ static char *ac97_quirk; module_param(ac97_quirk, charp, 0444); MODULE_PARM_DESC(ac97_quirk, "AC'97 board specific workarounds."); -static struct ac97_quirk ac97_quirks[] = { +static const struct ac97_quirk ac97_quirks[] = { #if 0 /* Not yet confirmed if all 5536 boards are HP only */ { .subvendor = PCI_VENDOR_ID_AMD, |