Remove unnecessary check in drivers/video/intelfb/intelfbhw.c

All callers and the function itself dereference dinfo, so we can remove the
check.  (coverity id #1371)

Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Dave Airlie <airlied@linux.ie>
This commit is contained in:
Eric Sesterhenn 2006-10-20 14:35:59 -07:00 committed by Dave Airlie
parent a77b895001
commit f84fcb06a1
1 changed files with 1 additions and 1 deletions

View File

@ -664,7 +664,7 @@ intelfbhw_print_hw_state(struct intelfb_info *dinfo, struct intelfb_hwstate *hw)
int index = dinfo->pll_index;
DBG_MSG("intelfbhw_print_hw_state\n");
if (!hw || !dinfo)
if (!hw)
return;
/* Read in as much of the HW state as possible. */
printk("hw state dump start\n");