Commit 4c241b36 authored by Libo Chen's avatar Libo Chen Committed by Matthew Garrett

x86: msi-laptop: fix memleak

1. fix two visible mistakes:
    * when load_scm_model_init faild, we should call platform_device_del(msipf_device)
    * msipf_attribute_group should be remove in err case

2. change some tags, give them real meaning.
Signed-off-by: default avatarLibo Chen <libo.chen@huawei.com>
Signed-off-by: default avatarMatthew Garrett <matthew.garrett@nebula.com>
parent e1a98e61
...@@ -1098,29 +1098,29 @@ static int __init msi_init(void) ...@@ -1098,29 +1098,29 @@ static int __init msi_init(void)
ret = platform_device_add(msipf_device); ret = platform_device_add(msipf_device);
if (ret) if (ret)
goto fail_platform_device1; goto fail_device_add;
if (quirks->load_scm_model && (load_scm_model_init(msipf_device) < 0)) { if (quirks->load_scm_model && (load_scm_model_init(msipf_device) < 0)) {
ret = -EINVAL; ret = -EINVAL;
goto fail_platform_device1; goto fail_scm_model_init;
} }
ret = sysfs_create_group(&msipf_device->dev.kobj, ret = sysfs_create_group(&msipf_device->dev.kobj,
&msipf_attribute_group); &msipf_attribute_group);
if (ret) if (ret)
goto fail_platform_device2; goto fail_create_group;
if (!quirks->old_ec_model) { if (!quirks->old_ec_model) {
if (threeg_exists) if (threeg_exists)
ret = device_create_file(&msipf_device->dev, ret = device_create_file(&msipf_device->dev,
&dev_attr_threeg); &dev_attr_threeg);
if (ret) if (ret)
goto fail_platform_device2; goto fail_create_attr;
} else { } else {
ret = sysfs_create_group(&msipf_device->dev.kobj, ret = sysfs_create_group(&msipf_device->dev.kobj,
&msipf_old_attribute_group); &msipf_old_attribute_group);
if (ret) if (ret)
goto fail_platform_device2; goto fail_create_attr;
/* Disable automatic brightness control by default because /* Disable automatic brightness control by default because
* this module was probably loaded to do brightness control in * this module was probably loaded to do brightness control in
...@@ -1134,26 +1134,22 @@ static int __init msi_init(void) ...@@ -1134,26 +1134,22 @@ static int __init msi_init(void)
return 0; return 0;
fail_platform_device2: fail_create_attr:
sysfs_remove_group(&msipf_device->dev.kobj, &msipf_attribute_group);
fail_create_group:
if (quirks->load_scm_model) { if (quirks->load_scm_model) {
i8042_remove_filter(msi_laptop_i8042_filter); i8042_remove_filter(msi_laptop_i8042_filter);
cancel_delayed_work_sync(&msi_rfkill_dwork); cancel_delayed_work_sync(&msi_rfkill_dwork);
cancel_work_sync(&msi_rfkill_work); cancel_work_sync(&msi_rfkill_work);
rfkill_cleanup(); rfkill_cleanup();
} }
fail_scm_model_init:
platform_device_del(msipf_device); platform_device_del(msipf_device);
fail_device_add:
fail_platform_device1:
platform_device_put(msipf_device); platform_device_put(msipf_device);
fail_platform_driver: fail_platform_driver:
platform_driver_unregister(&msipf_driver); platform_driver_unregister(&msipf_driver);
fail_backlight: fail_backlight:
backlight_device_unregister(msibl_device); backlight_device_unregister(msibl_device);
return ret; return ret;
......
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