Skip to content
Snippets Groups Projects
Commit f709f814 authored by Yi Wang's avatar Yi Wang Committed by Thomas Gleixner
Browse files

x86/e820: Use proper booleans instead of 0/1


This fixes the following coccinelle warning:
./arch/x86/kernel/e820.c:89:9-10: WARNING: return of 0/1 in function '_e820__mapped_any' with return type bool

Return type bool instead of 0/1.

Signed-off-by: default avatarYi Wang <wang.yi59@zte.com.cn>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/1563158829-44373-1-git-send-email-wang.yi59@zte.com.cn
parent ec633558
No related branches found
No related tags found
No related merge requests found
...@@ -86,9 +86,9 @@ static bool _e820__mapped_any(struct e820_table *table, ...@@ -86,9 +86,9 @@ static bool _e820__mapped_any(struct e820_table *table,
continue; continue;
if (entry->addr >= end || entry->addr + entry->size <= start) if (entry->addr >= end || entry->addr + entry->size <= start)
continue; continue;
return 1; return true;
} }
return 0; return false;
} }
bool e820__mapped_raw_any(u64 start, u64 end, enum e820_type type) bool e820__mapped_raw_any(u64 start, u64 end, enum e820_type type)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment