[PATCH] Input: maplecontrol - set driver data before registering input device

From: Dmitry Torokhov

Date: Tue Jun 30 2026 - 01:49:28 EST


Set maple driver data before calling input_register_device() to
ensure that it is available if the device is opened immediately and
the callback is triggered.

Cc: stable@xxxxxxxxxxxxxxx
Assisted-by: Antigravity:gemini-3.5-flash
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@xxxxxxxxx>
---
drivers/input/joystick/maplecontrol.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/input/joystick/maplecontrol.c b/drivers/input/joystick/maplecontrol.c
index 7f36f73844a9..6293b6e8148b 100644
--- a/drivers/input/joystick/maplecontrol.c
+++ b/drivers/input/joystick/maplecontrol.c
@@ -112,6 +112,8 @@ static int probe_maple_controller(struct device *dev)
pad->dev = idev;
pad->mdev = mdev;

+ maple_set_drvdata(mdev, pad);
+
idev->open = dc_pad_open;
idev->close = dc_pad_close;

@@ -146,7 +148,6 @@ static int probe_maple_controller(struct device *dev)
goto fail;

mdev->driver = mdrv;
- maple_set_drvdata(mdev, pad);

return 0;

--
2.55.0.rc0.799.gd6f94ed593-goog


--
Dmitry