mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 12:14:01 +08:00
ASoC: Add jack IRQ trace to 88pm860x driver
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
This commit is contained in:
parent
2bbb5d6679
commit
1c9e9795b5
@ -22,6 +22,7 @@
|
|||||||
#include <sound/tlv.h>
|
#include <sound/tlv.h>
|
||||||
#include <sound/initval.h>
|
#include <sound/initval.h>
|
||||||
#include <sound/jack.h>
|
#include <sound/jack.h>
|
||||||
|
#include <trace/events/asoc.h>
|
||||||
|
|
||||||
#include "88pm860x-codec.h"
|
#include "88pm860x-codec.h"
|
||||||
|
|
||||||
@ -1262,6 +1263,10 @@ static irqreturn_t pm860x_codec_handler(int irq, void *data)
|
|||||||
mask = pm860x->det.hs_shrt | pm860x->det.hook_det | pm860x->det.lo_shrt
|
mask = pm860x->det.hs_shrt | pm860x->det.hook_det | pm860x->det.lo_shrt
|
||||||
| pm860x->det.hp_det;
|
| pm860x->det.hp_det;
|
||||||
|
|
||||||
|
if (status & (HEADSET_STATUS | MIC_STATUS | SHORT_HS1 | SHORT_HS2 |
|
||||||
|
SHORT_LO1 | SHORT_LO2))
|
||||||
|
trace_snd_soc_jack_irq(dev_name(pm860x->codec->dev));
|
||||||
|
|
||||||
if ((pm860x->det.hp_det & SND_JACK_HEADPHONE)
|
if ((pm860x->det.hp_det & SND_JACK_HEADPHONE)
|
||||||
&& (status & HEADSET_STATUS))
|
&& (status & HEADSET_STATUS))
|
||||||
report |= SND_JACK_HEADPHONE;
|
report |= SND_JACK_HEADPHONE;
|
||||||
|
Loading…
Reference in New Issue
Block a user