]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - drivers/mfd/wm831x-core.c
mfd: Fix incorrect kfree(i2c) in wm831x-core i2c_driver probe
[net-next-2.6.git] / drivers / mfd / wm831x-core.c
index cb94e7e1e6eae254382c48e95499bd52d8f22f1b..1e7aaaf6cc6f871e49c7a59e1cb72d42020a197d 100644 (file)
@@ -1757,10 +1757,8 @@ static int wm831x_i2c_probe(struct i2c_client *i2c,
        struct wm831x *wm831x;
 
        wm831x = kzalloc(sizeof(struct wm831x), GFP_KERNEL);
-       if (wm831x == NULL) {
-               kfree(i2c);
+       if (wm831x == NULL)
                return -ENOMEM;
-       }
 
        i2c_set_clientdata(i2c, wm831x);
        wm831x->dev = &i2c->dev;