diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2010-05-20 04:40:55 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-05-20 05:56:14 -0400 |
commit | fbc256692eac29e04cf87e45736d7ff149180a52 (patch) | |
tree | 9fe9eea125af7f2381fbd1a95f3ca89daf260600 /sound/pci/hda/patch_realtek.c | |
parent | 3eaead579ebc09d4f4c050c9b6ce6d67337bcb20 (diff) |
ALSA: hda: Storage class should be before const qualifier
The C99 specification states in section 6.11.5:
The placement of a storage-class specifier other than at the beginning
of the declaration specifiers in a declaration is an obsolescent
feature.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/patch_realtek.c')
-rw-r--r-- | sound/pci/hda/patch_realtek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 80a183f99eb3..53538b0f9991 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c | |||
@@ -14207,7 +14207,7 @@ enum { | |||
14207 | ALC269_FIXUP_SONY_VAIO, | 14207 | ALC269_FIXUP_SONY_VAIO, |
14208 | }; | 14208 | }; |
14209 | 14209 | ||
14210 | const static struct hda_verb alc269_sony_vaio_fixup_verbs[] = { | 14210 | static const struct hda_verb alc269_sony_vaio_fixup_verbs[] = { |
14211 | {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD}, | 14211 | {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD}, |
14212 | {} | 14212 | {} |
14213 | }; | 14213 | }; |