diff options
-rw-r--r-- | drivers/input/mouse/logips2pp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/mouse/logips2pp.c b/drivers/input/mouse/logips2pp.c index d3ddea26b8ca..74a8ba7c71f8 100644 --- a/drivers/input/mouse/logips2pp.c +++ b/drivers/input/mouse/logips2pp.c | |||
@@ -338,12 +338,12 @@ int ps2pp_init(struct psmouse *psmouse, int set_properties) | |||
338 | param[1] = 0; | 338 | param[1] = 0; |
339 | ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO); | 339 | ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO); |
340 | 340 | ||
341 | if (!param[1]) | ||
342 | return -1; | ||
343 | |||
344 | model = ((param[0] >> 4) & 0x07) | ((param[0] << 3) & 0x78); | 341 | model = ((param[0] >> 4) & 0x07) | ((param[0] << 3) & 0x78); |
345 | buttons = param[1]; | 342 | buttons = param[1]; |
346 | 343 | ||
344 | if (!model || !buttons) | ||
345 | return -1; | ||
346 | |||
347 | if ((model_info = get_model_info(model)) != NULL) { | 347 | if ((model_info = get_model_info(model)) != NULL) { |
348 | 348 | ||
349 | /* | 349 | /* |