ASoC: Intel: bytcr_rt5651: Reporting button presses
Enable reporting of button presses now that the codec driver recently has gotten support for this. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Acked-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
b91f432cbc
commit
caed9d636e
|
@ -26,6 +26,7 @@
|
||||||
#include <linux/clk.h>
|
#include <linux/clk.h>
|
||||||
#include <linux/device.h>
|
#include <linux/device.h>
|
||||||
#include <linux/dmi.h>
|
#include <linux/dmi.h>
|
||||||
|
#include <linux/input.h>
|
||||||
#include <linux/gpio/consumer.h>
|
#include <linux/gpio/consumer.h>
|
||||||
#include <linux/gpio/machine.h>
|
#include <linux/gpio/machine.h>
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
|
@ -531,13 +532,17 @@ static int byt_rt5651_init(struct snd_soc_pcm_runtime *runtime)
|
||||||
|
|
||||||
if (BYT_RT5651_JDSRC(byt_rt5651_quirk)) {
|
if (BYT_RT5651_JDSRC(byt_rt5651_quirk)) {
|
||||||
ret = snd_soc_card_jack_new(runtime->card, "Headset",
|
ret = snd_soc_card_jack_new(runtime->card, "Headset",
|
||||||
SND_JACK_HEADSET, &priv->jack,
|
SND_JACK_HEADSET | SND_JACK_BTN_0,
|
||||||
bytcr_jack_pins, ARRAY_SIZE(bytcr_jack_pins));
|
&priv->jack, bytcr_jack_pins,
|
||||||
|
ARRAY_SIZE(bytcr_jack_pins));
|
||||||
if (ret) {
|
if (ret) {
|
||||||
dev_err(runtime->dev, "jack creation failed %d\n", ret);
|
dev_err(runtime->dev, "jack creation failed %d\n", ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
snd_jack_set_key(priv->jack.jack, SND_JACK_BTN_0,
|
||||||
|
KEY_PLAYPAUSE);
|
||||||
|
|
||||||
ret = snd_soc_component_set_jack(codec, &priv->jack, NULL);
|
ret = snd_soc_component_set_jack(codec, &priv->jack, NULL);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in New Issue