Message ID | 20170630170126.4148-8-wei.liu2@citrix.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
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;
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 <wei.liu2@citrix.com> --- xen/arch/x86/e820.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)