Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fbc25669 authored by Tobias Klauser's avatar Tobias Klauser Committed by Takashi Iwai
Browse files

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: default avatarTobias Klauser <tklauser@distanz.ch>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 3eaead57
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -14207,7 +14207,7 @@ enum {
	ALC269_FIXUP_SONY_VAIO,
};
const static struct hda_verb alc269_sony_vaio_fixup_verbs[] = {
static const struct hda_verb alc269_sony_vaio_fixup_verbs[] = {
	{0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD},
	{}
};