Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d9b830fa authored by Axel Lin's avatar Axel Lin Committed by Dmitry Torokhov
Browse files

Input: mpu3050 - correct call to input_free_device



input_free_device() should be used if input_register_device() was not called
yet or if it failed.

Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent db0b34b0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -282,7 +282,7 @@ static int __devinit mpu3050_probe(struct i2c_client *client,
err_pm_set_suspended:
	pm_runtime_set_suspended(&client->dev);
err_free_mem:
	input_unregister_device(idev);
	input_free_device(idev);
	kfree(sensor);
	return error;
}