mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
Input: cma3000-d0x - remove unneeded checks
data->mode is unsigned and can not be less than 0. Reported-by: Werner <w.landgraf@ru.ru> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
parent
b83643ebf2
commit
bcad87bd92
@ -318,7 +318,7 @@ struct cma3000_accl_data *cma3000_init(struct device *dev, int irq,
|
||||
mutex_init(&data->mutex);
|
||||
|
||||
data->mode = pdata->mode;
|
||||
if (data->mode < CMAMODE_DEFAULT || data->mode > CMAMODE_POFF) {
|
||||
if (data->mode > CMAMODE_POFF) {
|
||||
data->mode = CMAMODE_MOTDET;
|
||||
dev_warn(dev,
|
||||
"Invalid mode specified, assuming Motion Detect\n");
|
||||
|
Loading…
Reference in New Issue
Block a user