svn commit: r360304 - in stable: 10/sys/dev/ixl 11/sys/dev/ixl 12/sys/dev/ixl

Dimitry Andric dim at FreeBSD.org
Sat Apr 25 13:14:07 UTC 2020


Author: dim
Date: Sat Apr 25 13:14:06 2020
New Revision: 360304
URL: https://svnweb.freebsd.org/changeset/base/360304

Log:
  MFC r348445 (by lwhsu):
  
  Add the missing braces to fix the code not guarded by the if clause and has
  misleading indentation.  This is found by gcc -Wmisleading-indentation
  
  Approved by:	erj
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D20428

Modified:
  stable/12/sys/dev/ixl/i40e_common.c
Directory Properties:
  stable/12/   (props changed)

Changes in other areas also in this revision:
Modified:
  stable/10/sys/dev/ixl/i40e_common.c
  stable/11/sys/dev/ixl/i40e_common.c
Directory Properties:
  stable/10/   (props changed)
  stable/11/   (props changed)

Modified: stable/12/sys/dev/ixl/i40e_common.c
==============================================================================
--- stable/12/sys/dev/ixl/i40e_common.c	Sat Apr 25 13:10:17 2020	(r360303)
+++ stable/12/sys/dev/ixl/i40e_common.c	Sat Apr 25 13:14:06 2020	(r360304)
@@ -383,13 +383,14 @@ void i40e_debug_aq(struct i40e_hw *hw, enum i40e_debug
  **/
 bool i40e_check_asq_alive(struct i40e_hw *hw)
 {
-	if (hw->aq.asq.len)
+	if (hw->aq.asq.len) {
 		if (!i40e_is_vf(hw))
 			return !!(rd32(hw, hw->aq.asq.len) &
 				I40E_PF_ATQLEN_ATQENABLE_MASK);
-		if (i40e_is_vf(hw))
+		else
 			return !!(rd32(hw, hw->aq.asq.len) &
 				I40E_VF_ATQLEN1_ATQENABLE_MASK);
+	}
 	return FALSE;
 }
 


More information about the svn-src-all mailing list