mfd: ab8500-debugfs: Cleaning up unnecessary to test, unsigned can't be negative.
Unsigned variable can't be negative so it is unnecessary to test it This was found using a static code analysis program called cppcheck Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se> Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
005d16b602
commit
a3dd01e177
@ -2503,7 +2503,7 @@ static ssize_t ab8500_gpadc_trig_timer_write(struct file *file,
|
|||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
if ((user_trig_timer >= 0) && (user_trig_timer <= 255)) {
|
if (user_trig_timer <= 255) {
|
||||||
trig_timer = (u8) user_trig_timer;
|
trig_timer = (u8) user_trig_timer;
|
||||||
} else {
|
} else {
|
||||||
dev_err(dev, "debugfs error input: "
|
dev_err(dev, "debugfs error input: "
|
||||||
|
Loading…
Reference in New Issue
Block a user