mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-05 09:36:45 +07:00
qlogic/qed: remove bogus NULL check
We check if "p_hwfn" is NULL and then dereference it in the error handling code. I read the code and it isn't NULL so let's remove the check. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Yuval Mintz <Yuval.Mintz@qlogic.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7362945aea
commit
8c169c28f4
@ -251,11 +251,6 @@ void qed_int_sp_dpc(unsigned long hwfn_cookie)
|
||||
int arr_size;
|
||||
u16 rc = 0;
|
||||
|
||||
if (!p_hwfn) {
|
||||
DP_ERR(p_hwfn->cdev, "DPC called - no hwfn!\n");
|
||||
return;
|
||||
}
|
||||
|
||||
if (!p_hwfn->p_sp_sb) {
|
||||
DP_ERR(p_hwfn->cdev, "DPC called - no p_sp_sb\n");
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user