Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3d9667a9 authored by Dave Jones's avatar Dave Jones Committed by David S. Miller
Browse files

i40e: Add missing braces to i40e_dcb_need_reconfig()



Indentation mismatch spotted with Coverity.
Introduced in 4e3b35b0 ("i40e: add DCB and DCBNL support")

Signed-off-by: default avatarDave Jones <davej@fedoraproject.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent cefe0078
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -4440,9 +4440,10 @@ bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
	/* Check if APP Table has changed */
	if (memcmp(&new_cfg->app,
		   &old_cfg->app,
		   sizeof(new_cfg->app)))
		   sizeof(new_cfg->app))) {
		need_reconfig = true;
		dev_info(&pf->pdev->dev, "APP Table change detected.\n");
	}

	return need_reconfig;
}