Commit eab0fbfa authored by Joe Perches's avatar Joe Perches Committed by Takashi Iwai

ALSA: Use const struct ac97_quirk

Use const to reduce data by ~3Kb.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 751e2216
...@@ -608,7 +608,9 @@ struct ac97_quirk { ...@@ -608,7 +608,9 @@ struct ac97_quirk {
int type; /* quirk type above */ int type; /* quirk type above */
}; };
int snd_ac97_tune_hardware(struct snd_ac97 *ac97, struct ac97_quirk *quirk, const char *override); int snd_ac97_tune_hardware(struct snd_ac97 *ac97,
const struct ac97_quirk *quirk,
const char *override);
int snd_ac97_set_rate(struct snd_ac97 *ac97, int reg, unsigned int rate); int snd_ac97_set_rate(struct snd_ac97 *ac97, int reg, unsigned int rate);
/* /*
......
...@@ -2902,7 +2902,8 @@ static int apply_quirk_str(struct snd_ac97 *ac97, const char *typestr) ...@@ -2902,7 +2902,8 @@ static int apply_quirk_str(struct snd_ac97 *ac97, const char *typestr)
* Return: Zero if successful, or a negative error code on failure. * Return: Zero if successful, or a negative error code on failure.
*/ */
int snd_ac97_tune_hardware(struct snd_ac97 *ac97, struct ac97_quirk *quirk, const char *override) int snd_ac97_tune_hardware(struct snd_ac97 *ac97,
const struct ac97_quirk *quirk, const char *override)
{ {
int result; int result;
......
...@@ -747,7 +747,7 @@ snd_ad1889_proc_init(struct snd_ad1889 *chip) ...@@ -747,7 +747,7 @@ snd_ad1889_proc_init(struct snd_ad1889 *chip)
snd_info_set_text_ops(entry, chip, snd_ad1889_proc_read); snd_info_set_text_ops(entry, chip, snd_ad1889_proc_read);
} }
static struct ac97_quirk ac97_quirks[] = { static const struct ac97_quirk ac97_quirks[] = {
{ {
.subvendor = 0x11d4, /* AD */ .subvendor = 0x11d4, /* AD */
.subdevice = 0x1889, /* AD1889 */ .subdevice = 0x1889, /* AD1889 */
......
...@@ -1390,7 +1390,7 @@ static irqreturn_t snd_atiixp_interrupt(int irq, void *dev_id) ...@@ -1390,7 +1390,7 @@ static irqreturn_t snd_atiixp_interrupt(int irq, void *dev_id)
* ac97 mixer section * ac97 mixer section
*/ */
static struct ac97_quirk ac97_quirks[] = { static const struct ac97_quirk ac97_quirks[] = {
{ {
.subvendor = 0x103c, .subvendor = 0x103c,
.subdevice = 0x006b, .subdevice = 0x006b,
......
...@@ -43,7 +43,7 @@ static char *ac97_quirk; ...@@ -43,7 +43,7 @@ static char *ac97_quirk;
module_param(ac97_quirk, charp, 0444); module_param(ac97_quirk, charp, 0444);
MODULE_PARM_DESC(ac97_quirk, "AC'97 board specific workarounds."); 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 */ #if 0 /* Not yet confirmed if all 5536 boards are HP only */
{ {
.subvendor = PCI_VENDOR_ID_AMD, .subvendor = PCI_VENDOR_ID_AMD,
......
...@@ -1795,7 +1795,7 @@ static struct ac97_pcm ac97_pcm_defs[] = { ...@@ -1795,7 +1795,7 @@ static struct ac97_pcm ac97_pcm_defs[] = {
}, },
}; };
static struct ac97_quirk ac97_quirks[] = { static const struct ac97_quirk ac97_quirks[] = {
{ {
.subvendor = 0x0e11, .subvendor = 0x0e11,
.subdevice = 0x000e, .subdevice = 0x000e,
......
...@@ -1812,7 +1812,7 @@ static void snd_via82xx_mixer_free_ac97(struct snd_ac97 *ac97) ...@@ -1812,7 +1812,7 @@ static void snd_via82xx_mixer_free_ac97(struct snd_ac97 *ac97)
chip->ac97 = NULL; chip->ac97 = NULL;
} }
static struct ac97_quirk ac97_quirks[] = { static const struct ac97_quirk ac97_quirks[] = {
{ {
.subvendor = 0x1106, .subvendor = 0x1106,
.subdevice = 0x4161, .subdevice = 0x4161,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment