Commit bdc3ae72 authored by Nick's avatar Nick Committed by Matthew Garrett

platform/x86/toshiba-apci.c possible bad if test?

Signed-off-by: default avatarMatthew Garrett <matthew.garrett@nebula.com>
parent dc8f0315
......@@ -1238,7 +1238,7 @@ static ssize_t toshiba_kbd_bl_mode_store(struct device *dev,
int mode = -1;
int time = -1;
if (sscanf(buf, "%i", &mode) != 1 && (mode != 2 || mode != 1))
if (sscanf(buf, "%i", &mode) != 1 || (mode != 2 || mode != 1))
return -EINVAL;
/* Set the Keyboard Backlight Mode where:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment