From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Matheos Mattsson <matheos.mattsson@gmail.com>
Cc: Pavel Rojtberg <rojtberg@gmail.com>,
linux-input@vger.kernel.org, gregkh@linuxfoundation.org
Subject: Re: [PATCH v3 08/11] Input: xpad - add support for Nacon Evol-X Xbox One Controller
Date: Fri, 17 Jan 2025 16:43:26 -0800 [thread overview]
Message-ID: <Z4r5LixxTPIf1rqP@google.com> (raw)
In-Reply-To: <CAOnZAHtEU-nBVuPq_5mC31e-KG+_VKW8PkSwUaCsFREjxewxGg@mail.gmail.com>
Hi Matheos,
On Fri, Jan 17, 2025 at 11:25:06PM +0200, Matheos Mattsson wrote:
> Hi,
>
> Sorry to jump in like this. I am not even sure what kind of "chain" this is
> really,
Pavel sent a chain of multiple patches (of which you were CCed on to
just one I assume), so that's what I was referring to.
> but if we are talking about my SOB I am 100% sure I did in my MR
> description on the xpad github repostitory.
Ah, OK, I see now. I simply cloned the repository and inspected the
commits. Pull requests is something that is only recorded in github and
is not a part of git repository.
> Apologies if this was either the wrong place, or if I am conpletely
> misunderstanding what this is about 😅
Yes, for the kernel development SOB should go into commit message
itself. This way SOBs are part of the source code and its history, not
tied to some infrastructure.
But since I am aware of your SOB now I am applying the patch.
Thank you!
>
> Regards,
> Matheos
>
> On Fri, 17 Jan 2025, 19:30 Dmitry Torokhov, <dmitry.torokhov@gmail.com>
> wrote:
>
> > Hi Pavel,
> >
> > On Tue, Jan 07, 2025 at 08:28:27PM +0100, Pavel Rojtberg wrote:
> > > From: Matheos Mattsson <matheos.mattsson@gmail.com>
> > >
> > > Signed-off-by: Matheos Mattsson <matheos.mattsson@gmail.com>
> >
> > I checked several patches against the github repository and in github
> > there are no "Signed-off-by"s from the original authors. I understand
> > and fully appreciate the desire to credit the original authors, but you
> > can not add SOBs on their behalf.
> >
> > I think the best way would be to combine all the changes into one patch
> > authored by you and give credit to all the people involved in the commit
> > description.
> >
> > > Signed-off-by: Pavel Rojtberg <rojtberg@gmail.com>
> > > ---
> > > drivers/input/joystick/xpad.c | 2 ++
> > > 1 file changed, 2 insertions(+)
> > >
> > > diff --git a/drivers/input/joystick/xpad.c
> > b/drivers/input/joystick/xpad.c
> > > index 237704b3fab5..18e33e2aeaa7 100644
> > > --- a/drivers/input/joystick/xpad.c
> > > +++ b/drivers/input/joystick/xpad.c
> > > @@ -394,6 +394,7 @@ static const struct xpad_device {
> > > { 0x3285, 0x0607, "Nacon GC-100", 0, XTYPE_XBOX360 },
> > > { 0x3285, 0x0614, "Nacon Pro Compact", 0, XTYPE_XBOXONE },
> > > { 0x3285, 0x0662, "Nacon Revolution5 Pro", 0, XTYPE_XBOX360 },
> > > + { 0x3285, 0x0663, "Nacon Evol-X", 0, XTYPE_XBOXONE },
> > > { 0x3537, 0x1004, "GameSir T4 Kaleid", 0, XTYPE_XBOX360 },
> > > { 0x3767, 0x0101, "Fanatec Speedster 3 Forceshock Wheel", 0,
> > XTYPE_XBOX },
> > > { 0x413d, 0x2104, "Black Shark Green Ghost Gamepad", 0,
> > XTYPE_XBOX360 },
> > > @@ -543,6 +544,7 @@ static const struct usb_device_id xpad_table[] = {
> > > XPAD_XBOXONE_VENDOR(0x2e95), /* SCUF Gaming Controller
> > */
> > > XPAD_XBOX360_VENDOR(0x31e3), /* Wooting Keyboards */
> > > XPAD_XBOX360_VENDOR(0x3285), /* Nacon GC-100 */
> > > + XPAD_XBOXONE_VENDOR(0x3285), /* Nacon Evol-X */
> > > XPAD_XBOX360_VENDOR(0x3537), /* GameSir Controllers */
> > > XPAD_XBOXONE_VENDOR(0x3537), /* GameSir Controllers */
> > > XPAD_XBOX360_VENDOR(0x413d), /* Black Shark Green Ghost
> > Controller */
> > > --
> > > 2.43.0
> > >
> >
> > Thanks.
> >
> > --
> > Dmitry
> >
--
Dmitry
next prev parent reply other threads:[~2025-01-18 0:43 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-07 19:28 [PATCH v3 00/11] Input: xpad - sync with github fork Pavel Rojtberg
2025-01-07 19:28 ` [PATCH v3 01/11] Input: xpad - improve name of 8BitDo controller 2dc8:3106 Pavel Rojtberg
2025-01-21 4:20 ` Dmitry Torokhov
2025-01-07 19:28 ` [PATCH v3 02/11] Input: xpad - add support for wooting two he (arm) Pavel Rojtberg
2025-01-21 4:20 ` Dmitry Torokhov
2025-01-07 19:28 ` [PATCH v3 03/11] Input: xpad - add support for SCUF Instinct Pavel Rojtberg
2025-01-07 19:28 ` [PATCH v3 04/11] Input: xpad - add support for Xbox ONE liquid metal controller Pavel Rojtberg
2025-01-07 19:28 ` [PATCH v3 05/11] Input: xpad - add multiple supported devices Pavel Rojtberg
2025-01-07 19:28 ` [PATCH v3 06/11] Input: xpad - add USB ID for Nacon Revolution5 Pro Pavel Rojtberg
2025-01-07 19:28 ` [PATCH v3 07/11] Input: xpad - added Turtle Beach Recon support Pavel Rojtberg
2025-01-07 19:28 ` [PATCH v3 08/11] Input: xpad - add support for Nacon Evol-X Xbox One Controller Pavel Rojtberg
2025-01-17 17:30 ` Dmitry Torokhov
[not found] ` <CAOnZAHtEU-nBVuPq_5mC31e-KG+_VKW8PkSwUaCsFREjxewxGg@mail.gmail.com>
2025-01-18 0:43 ` Dmitry Torokhov [this message]
2025-01-18 14:02 ` Pavel Rojtberg
2025-01-07 19:28 ` [PATCH v3 09/11] Input: xpad - add support for PDP Mirror's Edge controller Pavel Rojtberg
2025-01-07 19:28 ` [PATCH v3 10/11] Input: xpad - add support for Thrustmaster ESWAP X2 ELDEN RING Pavel Rojtberg
2025-01-07 19:28 ` [PATCH v3 11/11] Input: xpad - add unofficial Xbox 360 wireless receiver clone Pavel Rojtberg
2025-01-17 17:36 ` Dmitry Torokhov
2025-01-12 19:18 ` [PATCH v3 00/11] Input: xpad - sync with github fork Pavel Rojtberg
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=Z4r5LixxTPIf1rqP@google.com \
--to=dmitry.torokhov@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-input@vger.kernel.org \
--cc=matheos.mattsson@gmail.com \
--cc=rojtberg@gmail.com \
/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.