aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHimangi Saraogi <himangi774@gmail.com>2014-06-09 17:46:50 -0400
committerMatthew Garrett <matthew.garrett@nebula.com>2014-06-10 19:11:09 -0400
commitb3facd7ba822ede3e98108e17a75f2c9c3e463af (patch)
treeac722323411e57e839d48ccf6e0700a0131d2306
parentb02fdfcc40d74e64d3ea2a2120c96979e1b33128 (diff)
ideapad_laptop: Introduce the use of the managed version of kzalloc
This patch moves data allocated using kzalloc to managed data allocated using devm_kzalloc and cleans now unnecessary kfrees in probe and remove functions. The label sysfs_failed is removed as it is no longer required. Also, linux/device.h is added to make sure the devm_*() routine declarations are unambiguously available. The following Coccinelle semantic patch was used for making the change: @platform@ identifier p, probefn, removefn; @@ struct platform_driver p = { .probe = probefn, .remove = removefn, }; @prb@ identifier platform.probefn, pdev; expression e, e1, e2; @@ probefn(struct platform_device *pdev, ...) { <+... - e = kzalloc(e1, e2) + e = devm_kzalloc(&pdev->dev, e1, e2) ... ?-kfree(e); ...+> } @rem depends on prb@ identifier platform.removefn; expression e; @@ removefn(...) { <... - kfree(e); ...> } Signed-off-by: Himangi Saraogi <himangi774@gmail.com> Acked-by: Julia Lawall <julia.lawall@lip6.fr> Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
-rw-r--r--drivers/platform/x86/ideapad-laptop.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/platform/x86/ideapad-laptop.c b/drivers/platform/x86/ideapad-laptop.c
index 219eb289a909..b4c495a62eec 100644
--- a/drivers/platform/x86/ideapad-laptop.c
+++ b/drivers/platform/x86/ideapad-laptop.c
@@ -37,6 +37,7 @@
37#include <linux/seq_file.h> 37#include <linux/seq_file.h>
38#include <linux/i8042.h> 38#include <linux/i8042.h>
39#include <linux/dmi.h> 39#include <linux/dmi.h>
40#include <linux/device.h>
40 41
41#define IDEAPAD_RFKILL_DEV_NUM (3) 42#define IDEAPAD_RFKILL_DEV_NUM (3)
42 43
@@ -847,7 +848,7 @@ static int ideapad_acpi_add(struct platform_device *pdev)
847 if (read_method_int(adev->handle, "_CFG", &cfg)) 848 if (read_method_int(adev->handle, "_CFG", &cfg))
848 return -ENODEV; 849 return -ENODEV;
849 850
850 priv = kzalloc(sizeof(*priv), GFP_KERNEL); 851 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
851 if (!priv) 852 if (!priv)
852 return -ENOMEM; 853 return -ENOMEM;
853 854
@@ -858,7 +859,7 @@ static int ideapad_acpi_add(struct platform_device *pdev)
858 859
859 ret = ideapad_sysfs_init(priv); 860 ret = ideapad_sysfs_init(priv);
860 if (ret) 861 if (ret)
861 goto sysfs_failed; 862 return ret;
862 863
863 ret = ideapad_debugfs_init(priv); 864 ret = ideapad_debugfs_init(priv);
864 if (ret) 865 if (ret)
@@ -897,8 +898,6 @@ input_failed:
897 ideapad_debugfs_exit(priv); 898 ideapad_debugfs_exit(priv);
898debugfs_failed: 899debugfs_failed:
899 ideapad_sysfs_exit(priv); 900 ideapad_sysfs_exit(priv);
900sysfs_failed:
901 kfree(priv);
902 return ret; 901 return ret;
903} 902}
904 903
@@ -916,7 +915,6 @@ static int ideapad_acpi_remove(struct platform_device *pdev)
916 ideapad_debugfs_exit(priv); 915 ideapad_debugfs_exit(priv);
917 ideapad_sysfs_exit(priv); 916 ideapad_sysfs_exit(priv);
918 dev_set_drvdata(&pdev->dev, NULL); 917 dev_set_drvdata(&pdev->dev, NULL);
919 kfree(priv);
920 918
921 return 0; 919 return 0;
922} 920}