From: Wei Liu Date: Fri, 30 Jun 2017 16:03:34 +0000 (+0100) Subject: x86/e820.c: use plan bool X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~1830 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=519eda29b5e4cf4a50eaaa3f14e839da1be62c84;p=xen.git x86/e820.c: use plan bool Note that e820_mtrr_clip remains s8 although the command line parameter is bool, because it is a tristate variable. Signed-off-by: Wei Liu Reviewed-by: Andrew Cooper --- diff --git a/xen/arch/x86/e820.c b/xen/arch/x86/e820.c index bc1544a514..7c572bade2 100644 --- a/xen/arch/x86/e820.c +++ b/xen/arch/x86/e820.c @@ -29,7 +29,7 @@ static s8 __initdata e820_mtrr_clip = -1; boolean_param("e820-mtrr-clip", e820_mtrr_clip); /* opt_e820_verbose: Be verbose about clipping, the original e820, &c */ -static bool_t __initdata e820_verbose; +static bool __initdata e820_verbose; boolean_param("e820-verbose", e820_verbose); struct e820map e820;