From: Adrian McMenamin <adrian@newgolddream.dyndns.info>
To: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Cc: Harvey Harrison <harvey.harrison@gmail.com>,
Andrew Morton <akpm@linux-foundation.org>,
linux-kernel@vger.kernel.org, linux-sh@vger.kernel.org,
lethal@linux-sh.org
Subject: Re: [PATCH] sh: maple: add support for Maple controller as a
Date: Fri, 26 Dec 2008 19:08:39 +0000 [thread overview]
Message-ID: <1230318519.12447.1.camel@localhost.localdomain> (raw)
In-Reply-To: <20081223085946.GA14302@anvil.corenet.prv>
On Tue, 2008-12-23 at 03:59 -0500, Dmitry Torokhov wrote:
> On Mon, Dec 22, 2008 at 05:07:35PM -0800, Harvey Harrison wrote:
> > On Mon, 2008-12-22 at 15:06 -0800, Andrew Morton wrote:
> > > On Fri, 19 Dec 2008 23:15:42 +0000
> > > Adrian McMenamin <adrian@newgolddream.dyndns.info> wrote:
> > >
> > > > Not sure what happened with earlier submissions, so here is an up-to-date
> > > > patch for the Dreamcast Maple controlled.
> > > >
> > > >
> > > > Add support for the SEGA Dreamcast Maple controller as a joystick
> > > >
> > > > ...
> > > >
> > > > +static void dc_pad_callback(struct mapleq *mq)
> > > > +{
> > > > + unsigned short buttons;
> > > > + struct maple_device *mapledev = mq->dev;
> > > > + struct dc_pad *pad = maple_get_drvdata(mapledev);
> > > > + struct input_dev *dev = pad->dev;
> > > > + unsigned char *res = mq->recvbuf;
> > > > +
> > > > + buttons = ~cpu_to_le16(*(unsigned short *)(res + 8));
> > >
> > > hm, could that be simplified?
> >
> > And as a bonus fix the obvious sparse warning:
> >
> > buttons = ~le16_to_cpup((__le16 *)(res + 8));
> >
>
> Below is what I woudl like to apply unless you see more issues with the
> patch. Andrew, if you could test it on your hardware to make sure it
> still works that woudl be great.
>
> Thanks!
>
Just to say I've tested this with jstest now and it seems to be in good
working order. There is a calibration issue on one axis, but I think
that's my hardware :-)
WARNING: multiple messages have this Message-ID (diff)
From: Adrian McMenamin <adrian@newgolddream.dyndns.info>
To: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Cc: Harvey Harrison <harvey.harrison@gmail.com>,
Andrew Morton <akpm@linux-foundation.org>,
linux-kernel@vger.kernel.org, linux-sh@vger.kernel.org,
lethal@linux-sh.org
Subject: Re: [PATCH] sh: maple: add support for Maple controller as a joystick
Date: Fri, 26 Dec 2008 19:08:39 +0000 [thread overview]
Message-ID: <1230318519.12447.1.camel@localhost.localdomain> (raw)
In-Reply-To: <20081223085946.GA14302@anvil.corenet.prv>
On Tue, 2008-12-23 at 03:59 -0500, Dmitry Torokhov wrote:
> On Mon, Dec 22, 2008 at 05:07:35PM -0800, Harvey Harrison wrote:
> > On Mon, 2008-12-22 at 15:06 -0800, Andrew Morton wrote:
> > > On Fri, 19 Dec 2008 23:15:42 +0000
> > > Adrian McMenamin <adrian@newgolddream.dyndns.info> wrote:
> > >
> > > > Not sure what happened with earlier submissions, so here is an up-to-date
> > > > patch for the Dreamcast Maple controlled.
> > > >
> > > >
> > > > Add support for the SEGA Dreamcast Maple controller as a joystick
> > > >
> > > > ...
> > > >
> > > > +static void dc_pad_callback(struct mapleq *mq)
> > > > +{
> > > > + unsigned short buttons;
> > > > + struct maple_device *mapledev = mq->dev;
> > > > + struct dc_pad *pad = maple_get_drvdata(mapledev);
> > > > + struct input_dev *dev = pad->dev;
> > > > + unsigned char *res = mq->recvbuf;
> > > > +
> > > > + buttons = ~cpu_to_le16(*(unsigned short *)(res + 8));
> > >
> > > hm, could that be simplified?
> >
> > And as a bonus fix the obvious sparse warning:
> >
> > buttons = ~le16_to_cpup((__le16 *)(res + 8));
> >
>
> Below is what I woudl like to apply unless you see more issues with the
> patch. Andrew, if you could test it on your hardware to make sure it
> still works that woudl be great.
>
> Thanks!
>
Just to say I've tested this with jstest now and it seems to be in good
working order. There is a calibration issue on one axis, but I think
that's my hardware :-)
next prev parent reply other threads:[~2008-12-26 19:08 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-12-19 23:15 [PATCH] sh: maple: add support for Maple controller as a joystick Adrian McMenamin
2008-12-20 15:16 ` [PATCH] sh: maple: add support for Maple controller as a Matt Fleming
2008-12-20 15:16 ` [PATCH] sh: maple: add support for Maple controller as a joystick Matt Fleming
2008-12-20 16:07 ` [PATCH] sh: maple: add support for Maple controller as a Adrian McMenamin
2008-12-20 16:07 ` [PATCH] sh: maple: add support for Maple controller as a joystick Adrian McMenamin
2008-12-20 20:19 ` Dmitry Torokhov
2008-12-20 20:19 ` Dmitry Torokhov
2008-12-20 20:47 ` [PATCH] sh: maple: add support for Maple controller as a Adrian McMenamin
2008-12-20 20:47 ` [PATCH] sh: maple: add support for Maple controller as a joystick Adrian McMenamin
2008-12-20 22:17 ` Dmitry Torokhov
2008-12-20 22:17 ` Dmitry Torokhov
2008-12-21 6:47 ` Paul Mundt
2008-12-21 6:47 ` Paul Mundt
2008-12-21 9:16 ` Rabin Vincent
2008-12-21 9:28 ` [PATCH] sh: maple: add support for Maple controller as a Rabin Vincent
2008-12-22 23:06 ` Andrew Morton
2008-12-22 23:06 ` [PATCH] sh: maple: add support for Maple controller as a joystick Andrew Morton
2008-12-23 1:07 ` [PATCH] sh: maple: add support for Maple controller as a Harvey Harrison
2008-12-23 1:07 ` [PATCH] sh: maple: add support for Maple controller as a joystick Harvey Harrison
2008-12-23 8:59 ` [PATCH] sh: maple: add support for Maple controller as a Dmitry Torokhov
2008-12-23 8:59 ` [PATCH] sh: maple: add support for Maple controller as a joystick Dmitry Torokhov
2008-12-26 19:08 ` Adrian McMenamin [this message]
2008-12-26 19:08 ` Adrian McMenamin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1230318519.12447.1.camel@localhost.localdomain \
--to=adrian@newgolddream.dyndns.info \
--cc=akpm@linux-foundation.org \
--cc=dmitry.torokhov@gmail.com \
--cc=harvey.harrison@gmail.com \
--cc=lethal@linux-sh.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sh@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.