[PATCH] Input: xpad - fix PDP Marvel Xbox 360 controller

Jeremy Nyberg posted 1 patch 2 weeks, 1 day ago
drivers/input/joystick/xpad.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] Input: xpad - fix PDP Marvel Xbox 360 controller
Posted by Jeremy Nyberg 2 weeks, 1 day ago
The PDP Marvel Xbox 360 controller with USB ID 0e6f:0147 is
incorrectly classified as an Xbox One controller.

With the current XTYPE_XBOXONE classification, the controller is
detected but produces no input, while its four player LEDs continue
blinking indefinitely.

Classify USB ID 0e6f:0147 as an Xbox 360 controller instead.

Tested on a PDP Marvel Xbox 360 controller with USB ID 0e6f:0147.
All inputs register correctly and the player LED indicates the
current player.

Signed-off-by: Jeremy Nyberg <SlickStretch3.0@gmail.com>
---
 drivers/input/joystick/xpad.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c
index 2da0b7f17..b7a9a940d 100644
--- a/drivers/input/joystick/xpad.c
+++ b/drivers/input/joystick/xpad.c
@@ -215,7 +215,7 @@ static const struct xpad_device {
 	{ 0x0e6f, 0x0139, "Afterglow Prismatic Wired Controller", 0, XTYPE_XBOXONE },
 	{ 0x0e6f, 0x013a, "PDP Xbox One Controller", 0, XTYPE_XBOXONE },
 	{ 0x0e6f, 0x0146, "Rock Candy Wired Controller for Xbox One", 0, XTYPE_XBOXONE },
-	{ 0x0e6f, 0x0147, "PDP Marvel Xbox One Controller", 0, XTYPE_XBOXONE },
+	{ 0x0e6f, 0x0147, "PDP Marvel Xbox 360 Controller", 0, XTYPE_XBOX360 },
 	{ 0x0e6f, 0x015c, "PDP Xbox One Arcade Stick", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOXONE },
 	{ 0x0e6f, 0x015d, "PDP Mirror's Edge Official Wired Controller for Xbox One", 0, XTYPE_XBOXONE },
 	{ 0x0e6f, 0x0161, "PDP Xbox One Controller", 0, XTYPE_XBOXONE },
-- 
2.55.0
Re: [PATCH] Input: xpad - fix PDP Marvel Xbox 360 controller
Posted by Dmitry Torokhov 1 week, 4 days ago
On Thu, Sep 10, 2026 at 12:16:27AM -0700, Jeremy Nyberg wrote:
> The PDP Marvel Xbox 360 controller with USB ID 0e6f:0147 is
> incorrectly classified as an Xbox One controller.
> 
> With the current XTYPE_XBOXONE classification, the controller is
> detected but produces no input, while its four player LEDs continue
> blinking indefinitely.
> 
> Classify USB ID 0e6f:0147 as an Xbox 360 controller instead.
> 
> Tested on a PDP Marvel Xbox 360 controller with USB ID 0e6f:0147.
> All inputs register correctly and the player LED indicates the
> current player.
> 
> Signed-off-by: Jeremy Nyberg <SlickStretch3.0@gmail.com>

Applied, thank you.

-- 
Dmitry