diff mbox series

arm64: mte: style: Simplify bool comparison

Message ID 1610357737-68678-1-git-send-email-abaci-bugfix@linux.alibaba.com (mailing list archive)
State Accepted
Commit dd313a2653d442f015e82706f6b185a881772101
Headers show
Series arm64: mte: style: Simplify bool comparison | expand

Commit Message

Abaci Team Jan. 11, 2021, 9:35 a.m. UTC
Fix the following coccicheck warning:
./tools/testing/selftests/arm64/mte/check_buffer_fill.c:84:12-35:
WARNING: Comparison to bool

Signed-off-by: YANG LI <abaci-bugfix@linux.alibaba.com>
Reported-by: Abaci Robot<abaci@linux.alibaba.com>
---
 tools/testing/selftests/arm64/mte/check_buffer_fill.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Will Deacon Jan. 20, 2021, 1:01 p.m. UTC | #1
On Mon, 11 Jan 2021 17:35:37 +0800, YANG LI wrote:
> Fix the following coccicheck warning:
> ./tools/testing/selftests/arm64/mte/check_buffer_fill.c:84:12-35:
> WARNING: Comparison to bool

Applied to arm64 (for-next/selftests), thanks!

[1/1] arm64: mte: style: Simplify bool comparison
      https://git.kernel.org/arm64/c/dd313a2653d4

Cheers,
diff mbox series

Patch

diff --git a/tools/testing/selftests/arm64/mte/check_buffer_fill.c b/tools/testing/selftests/arm64/mte/check_buffer_fill.c
index c9fa141..75fc482 100644
--- a/tools/testing/selftests/arm64/mte/check_buffer_fill.c
+++ b/tools/testing/selftests/arm64/mte/check_buffer_fill.c
@@ -81,7 +81,7 @@  static int check_buffer_underflow_by_byte(int mem_type, int mode,
 		last_index = 0;
 		/* Set some value in tagged memory and make the buffer underflow */
 		for (j = sizes[i] - 1; (j >= -underflow_range) &&
-				       (cur_mte_cxt.fault_valid == false); j--) {
+				       (!cur_mte_cxt.fault_valid); j--) {
 			ptr[j] = '1';
 			last_index = j;
 		}