* [PATCH] ALSA: usb/caiaq: fix Traktor Kontrol X1 ABS_HAT2X axis
@ 2010-05-20 12:15 Daniel Mack
2010-05-24 21:09 ` Daniel Mack
0 siblings, 1 reply; 3+ messages in thread
From: Daniel Mack @ 2010-05-20 12:15 UTC (permalink / raw)
To: alsa-devel
Signed-off-by: Daniel Mack <daniel@caiaq.de>
---
sound/usb/caiaq/input.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/sound/usb/caiaq/input.c b/sound/usb/caiaq/input.c
index 8bbfbfd..dcb6207 100644
--- a/sound/usb/caiaq/input.c
+++ b/sound/usb/caiaq/input.c
@@ -171,7 +171,7 @@ static void snd_caiaq_input_read_analog(struct snd_usb_caiaqdev *dev,
input_report_abs(input_dev, ABS_HAT0Y, (buf[4] << 8) | buf[5]);
input_report_abs(input_dev, ABS_HAT1X, (buf[12] << 8) | buf[13]);
input_report_abs(input_dev, ABS_HAT1Y, (buf[2] << 8) | buf[3]);
- input_report_abs(input_dev, ABS_HAT2X, (buf[15] << 8) | buf[15]);
+ input_report_abs(input_dev, ABS_HAT2X, (buf[14] << 8) | buf[15]);
input_report_abs(input_dev, ABS_HAT2Y, (buf[0] << 8) | buf[1]);
input_report_abs(input_dev, ABS_HAT3X, (buf[10] << 8) | buf[11]);
input_report_abs(input_dev, ABS_HAT3Y, (buf[6] << 8) | buf[7]);
--
1.7.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ALSA: usb/caiaq: fix Traktor Kontrol X1 ABS_HAT2X axis
2010-05-20 12:15 [PATCH] ALSA: usb/caiaq: fix Traktor Kontrol X1 ABS_HAT2X axis Daniel Mack
@ 2010-05-24 21:09 ` Daniel Mack
2010-05-25 18:26 ` Takashi Iwai
0 siblings, 1 reply; 3+ messages in thread
From: Daniel Mack @ 2010-05-24 21:09 UTC (permalink / raw)
To: alsa-devel
Ping - Just to make sure this isn't getting lost :)
On Thu, May 20, 2010 at 02:15:04PM +0200, Daniel Mack wrote:
> Signed-off-by: Daniel Mack <daniel@caiaq.de>
> ---
> sound/usb/caiaq/input.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/sound/usb/caiaq/input.c b/sound/usb/caiaq/input.c
> index 8bbfbfd..dcb6207 100644
> --- a/sound/usb/caiaq/input.c
> +++ b/sound/usb/caiaq/input.c
> @@ -171,7 +171,7 @@ static void snd_caiaq_input_read_analog(struct snd_usb_caiaqdev *dev,
> input_report_abs(input_dev, ABS_HAT0Y, (buf[4] << 8) | buf[5]);
> input_report_abs(input_dev, ABS_HAT1X, (buf[12] << 8) | buf[13]);
> input_report_abs(input_dev, ABS_HAT1Y, (buf[2] << 8) | buf[3]);
> - input_report_abs(input_dev, ABS_HAT2X, (buf[15] << 8) | buf[15]);
> + input_report_abs(input_dev, ABS_HAT2X, (buf[14] << 8) | buf[15]);
> input_report_abs(input_dev, ABS_HAT2Y, (buf[0] << 8) | buf[1]);
> input_report_abs(input_dev, ABS_HAT3X, (buf[10] << 8) | buf[11]);
> input_report_abs(input_dev, ABS_HAT3Y, (buf[6] << 8) | buf[7]);
> --
> 1.7.1
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ALSA: usb/caiaq: fix Traktor Kontrol X1 ABS_HAT2X axis
2010-05-24 21:09 ` Daniel Mack
@ 2010-05-25 18:26 ` Takashi Iwai
0 siblings, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2010-05-25 18:26 UTC (permalink / raw)
To: Daniel Mack; +Cc: alsa-devel
At Mon, 24 May 2010 23:09:02 +0200,
Daniel Mack wrote:
>
> Ping - Just to make sure this isn't getting lost :)
Yeah, applied now. Thanks.
Takashi
>
> On Thu, May 20, 2010 at 02:15:04PM +0200, Daniel Mack wrote:
> > Signed-off-by: Daniel Mack <daniel@caiaq.de>
> > ---
> > sound/usb/caiaq/input.c | 2 +-
> > 1 files changed, 1 insertions(+), 1 deletions(-)
> >
> > diff --git a/sound/usb/caiaq/input.c b/sound/usb/caiaq/input.c
> > index 8bbfbfd..dcb6207 100644
> > --- a/sound/usb/caiaq/input.c
> > +++ b/sound/usb/caiaq/input.c
> > @@ -171,7 +171,7 @@ static void snd_caiaq_input_read_analog(struct snd_usb_caiaqdev *dev,
> > input_report_abs(input_dev, ABS_HAT0Y, (buf[4] << 8) | buf[5]);
> > input_report_abs(input_dev, ABS_HAT1X, (buf[12] << 8) | buf[13]);
> > input_report_abs(input_dev, ABS_HAT1Y, (buf[2] << 8) | buf[3]);
> > - input_report_abs(input_dev, ABS_HAT2X, (buf[15] << 8) | buf[15]);
> > + input_report_abs(input_dev, ABS_HAT2X, (buf[14] << 8) | buf[15]);
> > input_report_abs(input_dev, ABS_HAT2Y, (buf[0] << 8) | buf[1]);
> > input_report_abs(input_dev, ABS_HAT3X, (buf[10] << 8) | buf[11]);
> > input_report_abs(input_dev, ABS_HAT3Y, (buf[6] << 8) | buf[7]);
> > --
> > 1.7.1
> >
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-05-25 18:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-20 12:15 [PATCH] ALSA: usb/caiaq: fix Traktor Kontrol X1 ABS_HAT2X axis Daniel Mack
2010-05-24 21:09 ` Daniel Mack
2010-05-25 18:26 ` Takashi Iwai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).