hwmon: (sch5636) Convert to use devm_ functions
[linux-2.6-block.git] / drivers / hwmon / sch5636.c
index 96a7e68718cadb8348ea4d7680750ade1d6d143b..5171180161929f207237d4c9ee0b11e9c58116f1 100644 (file)
@@ -402,9 +402,6 @@ static int sch5636_remove(struct platform_device *pdev)
                device_remove_file(&pdev->dev,
                                   &sch5636_fan_attr[i].dev_attr);
 
-       platform_set_drvdata(pdev, NULL);
-       kfree(data);
-
        return 0;
 }
 
@@ -414,7 +411,8 @@ static int __devinit sch5636_probe(struct platform_device *pdev)
        int i, err, val, revision[2];
        char id[4];
 
-       data = kzalloc(sizeof(struct sch5636_data), GFP_KERNEL);
+       data = devm_kzalloc(&pdev->dev, sizeof(struct sch5636_data),
+                           GFP_KERNEL);
        if (!data)
                return -ENOMEM;