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

Commit f6f38e27 authored by Carolyn Wyborny's avatar Carolyn Wyborny Committed by Jeff Kirsher
Browse files

igb: Replace 1/0 return values with true/false



This patch fixes issues found by updated coccicheck.

Signed-off-by: default avatarCarolyn Wyborny <carolyn.wyborny@intel.com>
Tested-by: default avatarAaron Brown <aaron.f.brown@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent be28b635
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -1206,11 +1206,11 @@ static bool reg_pattern_test(struct igb_adapter *adapter, u64 *data,
				"pattern test reg %04X failed: got 0x%08X expected 0x%08X\n",
				reg, val, (_test[pat] & write & mask));
			*data = reg;
			return 1;
			return true;
		}
	}

	return 0;
	return false;
}

static bool reg_set_and_check(struct igb_adapter *adapter, u64 *data,
@@ -1226,10 +1226,10 @@ static bool reg_set_and_check(struct igb_adapter *adapter, u64 *data,
			"set/check reg %04X test failed: got 0x%08X expected 0x%08X\n",
			reg, (val & mask), (write & mask));
		*data = reg;
		return 1;
		return true;
	}

	return 0;
	return false;
}

#define REG_PATTERN_TEST(reg, mask, write) \