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

Commit fc2a6e50 authored by Dmitry Torokhov's avatar Dmitry Torokhov
Browse files

Input: wistron_btns - remove use of sparse_keymap_free



Now that sparse keymap uses managed memory, we no longer need to clean it
up manually.

Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent a2279547
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -1243,12 +1243,10 @@ static int setup_input_dev(void)

	error = input_register_polled_device(wistron_idev);
	if (error)
		goto err_free_keymap;
		goto err_free_dev;

	return 0;

 err_free_keymap:
	sparse_keymap_free(input_dev);
 err_free_dev:
	input_free_polled_device(wistron_idev);
	return error;
@@ -1300,7 +1298,6 @@ static int wistron_remove(struct platform_device *dev)
{
	wistron_led_remove();
	input_unregister_polled_device(wistron_idev);
	sparse_keymap_free(wistron_idev->input);
	input_free_polled_device(wistron_idev);
	bios_detach();