Преглед изворни кода

mfd: Fix incorrect kfree(i2c) in wm831x-core i2c_driver probe

The i2c_client received in probe() should not be kfree()'d.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Axel Lin пре 15 година
родитељ
комит
a2cddb6e41
1 измењених фајлова са 1 додато и 3 уклоњено
  1. 1 3
      drivers/mfd/wm831x-core.c

+ 1 - 3
drivers/mfd/wm831x-core.c

@@ -1757,10 +1757,8 @@ static int wm831x_i2c_probe(struct i2c_client *i2c,
 	struct wm831x *wm831x;
 	struct wm831x *wm831x;
 
 
 	wm831x = kzalloc(sizeof(struct wm831x), GFP_KERNEL);
 	wm831x = kzalloc(sizeof(struct wm831x), GFP_KERNEL);
-	if (wm831x == NULL) {
-		kfree(i2c);
+	if (wm831x == NULL)
 		return -ENOMEM;
 		return -ENOMEM;
-	}
 
 
 	i2c_set_clientdata(i2c, wm831x);
 	i2c_set_clientdata(i2c, wm831x);
 	wm831x->dev = &i2c->dev;
 	wm831x->dev = &i2c->dev;