Skip to content

Commit

Permalink
x86: !x & y typo in mtrr code
Browse files Browse the repository at this point in the history
As written, this can never be true.

Spotted by the Sparse checker.

Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Harvey Harrison authored and Ingo Molnar committed Apr 29, 2008
1 parent a01e035 commit e686d34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/kernel/cpu/mtrr/generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ u8 mtrr_type_lookup(u64 start, u64 end)
* Look of multiple ranges matching this address and pick type
* as per MTRR precedence
*/
if (!mtrr_state.enabled & 2) {
if (!(mtrr_state.enabled & 2)) {
return mtrr_state.def_type;
}

Expand Down

0 comments on commit e686d34

Please sign in to comment.