All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] HID: nvidia-shield: Add missing check for input_ff_create_memless
@ 2024-05-15  3:30 Chen Ni
  2024-05-15 14:59 ` Rahul Rameshbabu
  2024-05-23 12:17 ` Jiri Kosina
  0 siblings, 2 replies; 4+ messages in thread
From: Chen Ni @ 2024-05-15  3:30 UTC (permalink / raw)
  To: rrameshbabu, jikos, bentiss; +Cc: linux-input, linux-kernel, Chen Ni

Add check for the return value of input_ff_create_memless() and return
the error if it fails in order to catch the error.

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
---
 drivers/hid/hid-nvidia-shield.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/hid/hid-nvidia-shield.c b/drivers/hid/hid-nvidia-shield.c
index 58b15750dbb0..ff9078ad1961 100644
--- a/drivers/hid/hid-nvidia-shield.c
+++ b/drivers/hid/hid-nvidia-shield.c
@@ -283,7 +283,9 @@ static struct input_dev *shield_haptics_create(
 		return haptics;
 
 	input_set_capability(haptics, EV_FF, FF_RUMBLE);
-	input_ff_create_memless(haptics, NULL, play_effect);
+	ret = input_ff_create_memless(haptics, NULL, play_effect);
+	if (ret)
+		goto err;
 
 	ret = input_register_device(haptics);
 	if (ret)
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-05-23 12:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-15  3:30 [PATCH] HID: nvidia-shield: Add missing check for input_ff_create_memless Chen Ni
2024-05-15 14:59 ` Rahul Rameshbabu
2024-05-15 15:48   ` Benjamin Tissoires
2024-05-23 12:17 ` Jiri Kosina

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.