platform/x86: topstar-laptop: remove sparse_keymap_free() calls
As sparse_keymap_setup() now uses a managed memory allocation for the keymap copy it creates, the latter is freed automatically. Remove all calls to sparse_keymap_free(). Signed-off-by: Michał Kępień <kernel@kempniu.pl> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
This commit is contained in:
Родитель
b09b9195b3
Коммит
3f2e1a323a
|
@ -113,14 +113,12 @@ static int acpi_topstar_init_hkey(struct topstar_hkey *hkey)
|
|||
error = input_register_device(input);
|
||||
if (error) {
|
||||
pr_err("Unable to register input device\n");
|
||||
goto err_free_keymap;
|
||||
goto err_free_dev;
|
||||
}
|
||||
|
||||
hkey->inputdev = input;
|
||||
return 0;
|
||||
|
||||
err_free_keymap:
|
||||
sparse_keymap_free(input);
|
||||
err_free_dev:
|
||||
input_free_device(input);
|
||||
return error;
|
||||
|
@ -157,7 +155,6 @@ static int acpi_topstar_remove(struct acpi_device *device)
|
|||
|
||||
acpi_topstar_fncx_switch(device, false);
|
||||
|
||||
sparse_keymap_free(tps_hkey->inputdev);
|
||||
input_unregister_device(tps_hkey->inputdev);
|
||||
kfree(tps_hkey);
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче