summaryrefslogtreecommitdiff
path: root/drivers/input/joystick/n64joy.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2021-04-15 10:23:44 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2021-04-15 10:23:44 -0700
commit1df01322f00a0aedd4a589597ce9c0b680ae6068 (patch)
tree17d3e06070b9b42531c712b8dc4bc3077a6911b6 /drivers/input/joystick/n64joy.c
parent7f75285ca572eaabc028cf78c6ab5473d0d160be (diff)
parent56cfe6f820a6315291eb5a1b82bb49633b993d3b (diff)
downloadlinux-1df01322f00a0aedd4a589597ce9c0b680ae6068.tar.gz
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
Pull input fixes from Dmitry Torokhov: "Just a few driver fixes here" * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input: Input: elants_i2c - drop zero-checking of ABS_MT_TOUCH_MAJOR resolution Input: elants_i2c - fix division by zero if firmware reports zero phys size Input: nspire-keypad - enable interrupts only when opened Input: i8042 - fix Pegatron C15B ID entry Input: n64joy - fix return value check in n64joy_probe() Input: s6sy761 - fix coordinate read bit shift
Diffstat (limited to 'drivers/input/joystick/n64joy.c')
-rw-r--r--drivers/input/joystick/n64joy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/input/joystick/n64joy.c b/drivers/input/joystick/n64joy.c
index 8bcc529942bc..9dbca366613e 100644
--- a/drivers/input/joystick/n64joy.c
+++ b/drivers/input/joystick/n64joy.c
@@ -252,8 +252,8 @@ static int __init n64joy_probe(struct platform_device *pdev)
mutex_init(&priv->n64joy_mutex);
priv->reg_base = devm_platform_ioremap_resource(pdev, 0);
- if (!priv->reg_base) {
- err = -EINVAL;
+ if (IS_ERR(priv->reg_base)) {
+ err = PTR_ERR(priv->reg_base);
goto fail;
}