PCI Hotplug: cpqhp_pushbutton_thread(): remove a pointless if() check

The Coverity checker spotted that we'd have already oops'ed if "ctrl"
was NULL.

Additionally, "func" had just been checked for not being NULL.

Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Adrian Bunk 2007-10-24 18:25:00 +02:00 committed by Greg Kroah-Hartman
parent d73460d79b
commit 0039541088

View file

@ -1931,7 +1931,6 @@ void cpqhp_pushbutton_thread(unsigned long slot)
return ;
}
if (func != NULL && ctrl != NULL) {
if (cpqhp_process_SS(ctrl, func) != 0) {
amber_LED_on(ctrl, hp_slot);
green_LED_on(ctrl, hp_slot);
@ -1941,7 +1940,6 @@ void cpqhp_pushbutton_thread(unsigned long slot)
/* Wait for SOBS to be unset */
wait_for_ctrl_irq(ctrl);
}
}
p_slot->state = STATIC_STATE;
} else {