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

Commit 5c7f5fd1 authored by Bhalchandra Gajare's avatar Bhalchandra Gajare Committed by Stephen Boyd
Browse files

ALSA: Extend sound jack to support upto 8 key events



ALSA sound jack currently only supports upto 6 key events on a single
jack. Extend sound jack to support upto 8 buttons

Change-Id: Ie5945357c4cb59c067d61421632944f7a90435b5
CRs-fixed: 390846
Signed-off-by: default avatarBhalchandra Gajare <gajare@codeaurora.org>
parent e63688d0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ struct snd_jack {
	int type;
	const char *id;
	char name[100];
	unsigned int key[6];   /* Keep in sync with definitions above */
	unsigned int key[8];   /* Keep in sync with definitions above */
	void *private_data;
	void (*private_free)(struct snd_jack *);
};