Skip to content

Commit

Permalink
Input: atmel_mxt_ts - detect OOM when creating mt slots
Browse files Browse the repository at this point in the history
Hopefully this new code path will never be used, but better safe than
sorry...

Signed-off-by: Daniel Kurtz <djkurtz@chromium.org>
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
  • Loading branch information
Daniel Kurtz authored and Henrik Rydberg committed Jun 29, 2012
1 parent c2ef9a1 commit e1e1658
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/input/touchscreen/atmel_mxt_ts.c
Original file line number Diff line number Diff line change
Expand Up @@ -1136,7 +1136,9 @@ static int __devinit mxt_probe(struct i2c_client *client,
0, 255, 0, 0);

/* For multi touch */
input_mt_init_slots(input_dev, MXT_MAX_FINGER);
error = input_mt_init_slots(input_dev, MXT_MAX_FINGER);
if (error)
goto err_free_mem;
input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR,
0, MXT_MAX_AREA, 0, 0);
input_set_abs_params(input_dev, ABS_MT_POSITION_X,
Expand Down

0 comments on commit e1e1658

Please sign in to comment.