mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-07-14 21:29:37 +02:00
HID: nvidia-shield: Add missing check for input_ff_create_memless
[ Upstream commit0a3f9f7fc5
] Add check for the return value of input_ff_create_memless() and return the error if it fails in order to catch the error. Fixes:09308562d4
("HID: nvidia-shield: Initial driver implementation with Thunderstrike support") Signed-off-by: Chen Ni <nichen@iscas.ac.cn> Reviewed-by: Rahul Rameshbabu <rrameshbabu@nvidia.com> Signed-off-by: Jiri Kosina <jkosina@suse.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
af4cff0dd6
commit
b3f206985a
|
@ -283,7 +283,9 @@ static struct input_dev *shield_haptics_create(
|
||||||
return haptics;
|
return haptics;
|
||||||
|
|
||||||
input_set_capability(haptics, EV_FF, FF_RUMBLE);
|
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);
|
ret = input_register_device(haptics);
|
||||||
if (ret)
|
if (ret)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user