]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mfd: tc3589x: Use devm_*() functions
authorJingoo Han <jg1.han@samsung.com>
Wed, 20 Feb 2013 09:31:52 +0000 (18:31 +0900)
committerSamuel Ortiz <sameo@linux.intel.com>
Mon, 8 Apr 2013 15:25:29 +0000 (17:25 +0200)
Use devm_*() functions to make cleanup paths more simple.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
drivers/mfd/tc3589x.c

index ecc092c7f7453e4cfb7146fc222546869239f8b0..4cb92bb2aea2f27ad2a1cf4177890b7488ae7dc9 100644 (file)
@@ -350,7 +350,8 @@ static int tc3589x_probe(struct i2c_client *i2c,
                                     | I2C_FUNC_SMBUS_I2C_BLOCK))
                return -EIO;
 
-       tc3589x = kzalloc(sizeof(struct tc3589x), GFP_KERNEL);
+       tc3589x = devm_kzalloc(&i2c->dev, sizeof(struct tc3589x),
+                               GFP_KERNEL);
        if (!tc3589x)
                return -ENOMEM;
 
@@ -366,33 +367,27 @@ static int tc3589x_probe(struct i2c_client *i2c,
 
        ret = tc3589x_chip_init(tc3589x);
        if (ret)
-               goto out_free;
+               return ret;
 
        ret = tc3589x_irq_init(tc3589x, np);
        if (ret)
-               goto out_free;
+               return ret;
 
        ret = request_threaded_irq(tc3589x->i2c->irq, NULL, tc3589x_irq,
                                   IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
                                   "tc3589x", tc3589x);
        if (ret) {
                dev_err(tc3589x->dev, "failed to request IRQ: %d\n", ret);
-               goto out_free;
+               return ret;
        }
 
        ret = tc3589x_device_init(tc3589x);
        if (ret) {
                dev_err(tc3589x->dev, "failed to add child devices\n");
-               goto out_freeirq;
+               return ret;
        }
 
        return 0;
-
-out_freeirq:
-       free_irq(tc3589x->i2c->irq, tc3589x);
-out_free:
-       kfree(tc3589x);
-       return ret;
 }
 
 static int tc3589x_remove(struct i2c_client *client)
@@ -401,10 +396,6 @@ static int tc3589x_remove(struct i2c_client *client)
 
        mfd_remove_devices(tc3589x->dev);
 
-       free_irq(tc3589x->i2c->irq, tc3589x);
-
-       kfree(tc3589x);
-
        return 0;
 }