From: Dan Carpenter Date: Sat, 1 Mar 2014 13:55:29 +0000 (-0300) Subject: [media] ddbridge: remove unneeded an NULL check X-Git-Tag: v3.15-rc1~85^2~69 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cdcb12e78a4559c1842fbf8fb82e770b9f7362d6;p=pandora-kernel.git [media] ddbridge: remove unneeded an NULL check Static checkers complain about the inconsistent NULL check here. There is an unchecked dereference of "input->fe" in the call to tuner_attach_tda18271() and there is a second unchecked dereference a couple lines later when we do: input->fe2->tuner_priv = input->fe->tuner_priv; But actually "intput->fe" can't be NULL because if demod_attach_drxk() fails to allocate it, then we would have return an error code. Signed-off-by: Dan Carpenter Signed-off-by: Mauro Carvalho Chehab --- Reading git-diff-tree failed