Commit 6d35ae3d authored by Michael Krufky's avatar Michael Krufky Committed by Linus Torvalds
Browse files

[PATCH] dvb: nxt200x: remove null check before kfree()



Removed unnecessary null check before kfree() ...inspired by the big patch
from Jesper Juhl.

Signed-off-by: default avatarMichael Krufky <mkrufky@m1k.net>
Cc: Johannes Stezenbach <js@linuxtv.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent c6dd2d5d
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1159,7 +1159,6 @@ struct dvb_frontend* nxt200x_attach(const struct nxt200x_config* config,
	return &state->frontend;

error:
	if (state)
	kfree(state);
	printk("Unknown/Unsupported NXT chip: %02X %02X %02X %02X %02X\n",
		buf[0], buf[1], buf[2], buf[3], buf[4]);