x86: remove impossible test in mtrr/main.c
Impact: cleanup enable_mtrr_cleanup is static, and is never set to anything but 0 or 1. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
34945ede31
commit
71ab6b245f
1 changed files with 2 additions and 4 deletions
|
@ -823,7 +823,6 @@ static int enable_mtrr_cleanup __initdata =
|
|||
|
||||
static int __init disable_mtrr_cleanup_setup(char *str)
|
||||
{
|
||||
if (enable_mtrr_cleanup != -1)
|
||||
enable_mtrr_cleanup = 0;
|
||||
return 0;
|
||||
}
|
||||
|
@ -831,7 +830,6 @@ early_param("disable_mtrr_cleanup", disable_mtrr_cleanup_setup);
|
|||
|
||||
static int __init enable_mtrr_cleanup_setup(char *str)
|
||||
{
|
||||
if (enable_mtrr_cleanup != -1)
|
||||
enable_mtrr_cleanup = 1;
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue