Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6c832e36 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (8789): wm8739: remove wrong kfree



i2c_client is allocated for us, we should never free it ourselves.

Signed-off-by: default avatarHans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 2389b360
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -274,10 +274,8 @@ static int wm8739_probe(struct i2c_client *client,
			client->addr << 1, client->adapter->name);

	state = kmalloc(sizeof(struct wm8739_state), GFP_KERNEL);
	if (state == NULL) {
		kfree(client);
	if (state == NULL)
		return -ENOMEM;
	}
	state->vol_l = 0x17; /* 0dB */
	state->vol_r = 0x17; /* 0dB */
	state->muted = 0;