2021-01-11 13:04:13

by Abaci Team

[permalink] [raw]
Subject: [PATCH] ata: style: Simplify bool comparison

Fix the following coccicheck warning:
./include/linux/ata.h:621:5-25: WARNING: Comparison of 0/1 to bool
variable

Signed-off-by: YANG LI <[email protected]>
Reported-by: Abaci Robot<[email protected]>
---
include/linux/ata.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/ata.h b/include/linux/ata.h
index 6e67ade..89245f3 100644
--- a/include/linux/ata.h
+++ b/include/linux/ata.h
@@ -618,7 +618,7 @@ static inline bool ata_id_has_flush(const u16 *id)

static inline bool ata_id_flush_enabled(const u16 *id)
{
- if (ata_id_has_flush(id) == 0)
+ if (!ata_id_has_flush(id))
return false;
if ((id[ATA_ID_CSF_DEFAULT] & 0xC000) != 0x4000)
return false;
--
1.8.3.1