aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/input/mouse/alps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/input/mouse/alps.c b/drivers/input/mouse/alps.c
index a12e98158a75..33e7198cb05c 100644
--- a/drivers/input/mouse/alps.c
+++ b/drivers/input/mouse/alps.c
@@ -358,7 +358,7 @@ static int alps_reconnect(struct psmouse *psmouse)
358 if (!(priv->i = alps_get_model(psmouse, &version))) 358 if (!(priv->i = alps_get_model(psmouse, &version)))
359 return -1; 359 return -1;
360 360
361 if (priv->i->flags & ALPS_PASS && alps_passthrough_mode(psmouse, 1)) 361 if ((priv->i->flags & ALPS_PASS) && alps_passthrough_mode(psmouse, 1))
362 return -1; 362 return -1;
363 363
364 if (alps_get_status(psmouse, param)) 364 if (alps_get_status(psmouse, param))
@@ -372,7 +372,7 @@ static int alps_reconnect(struct psmouse *psmouse)
372 return -1; 372 return -1;
373 } 373 }
374 374
375 if (priv->i->flags == ALPS_PASS && alps_passthrough_mode(psmouse, 0)) 375 if ((priv->i->flags & ALPS_PASS) && alps_passthrough_mode(psmouse, 0))
376 return -1; 376 return -1;
377 377
378 return 0; 378 return 0;