Commit fc2a6e50 authored by Dmitry Torokhov's avatar Dmitry Torokhov

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
...@@ -1243,12 +1243,10 @@ static int setup_input_dev(void) ...@@ -1243,12 +1243,10 @@ static int setup_input_dev(void)
error = input_register_polled_device(wistron_idev); error = input_register_polled_device(wistron_idev);
if (error) if (error)
goto err_free_keymap; goto err_free_dev;
return 0; return 0;
err_free_keymap:
sparse_keymap_free(input_dev);
err_free_dev: err_free_dev:
input_free_polled_device(wistron_idev); input_free_polled_device(wistron_idev);
return error; return error;
...@@ -1300,7 +1298,6 @@ static int wistron_remove(struct platform_device *dev) ...@@ -1300,7 +1298,6 @@ static int wistron_remove(struct platform_device *dev)
{ {
wistron_led_remove(); wistron_led_remove();
input_unregister_polled_device(wistron_idev); input_unregister_polled_device(wistron_idev);
sparse_keymap_free(wistron_idev->input);
input_free_polled_device(wistron_idev); input_free_polled_device(wistron_idev);
bios_detach(); bios_detach();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment