From: Rasesh Mody Date: Wed, 29 Mar 2017 20:36:01 +0000 (-0700) Subject: net/qede/base: return an initialized return value X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=63efb906badba3ee90fd586cc155e0495fbb5b3b;p=dpdk.git net/qede/base: return an initialized return value Make sure ecore_iov_mark_vf_flr() always returns an initialized return value. Signed-off-by: Rasesh Mody --- diff --git a/drivers/net/qede/base/ecore_sriov.c b/drivers/net/qede/base/ecore_sriov.c index 6912cf8c12..d1c809cad4 100644 --- a/drivers/net/qede/base/ecore_sriov.c +++ b/drivers/net/qede/base/ecore_sriov.c @@ -3164,7 +3164,7 @@ ecore_iov_single_vf_flr_cleanup(struct ecore_hwfn *p_hwfn, bool ecore_iov_mark_vf_flr(struct ecore_hwfn *p_hwfn, u32 *p_disabled_vfs) { - bool found; + bool found = false; u16 i; DP_VERBOSE(p_hwfn, ECORE_MSG_IOV, "Marking FLR-ed VFs\n");