Lines Matching refs:error
340 int error;
348 error = pixcir_set_int_mode(ts, PIXCIR_INT_LEVEL_TOUCH, 0);
349 if (error) {
350 dev_err(dev, "Failed to set interrupt mode: %d\n", error);
351 return error;
358 error = pixcir_int_enable(ts, true);
359 if (error) {
361 error);
362 return error;
370 int error;
373 error = pixcir_int_enable(ts, false);
374 if (error) {
377 error);
378 return error;
471 int error;
508 error = input_mt_init_slots(input, tsdata->chip->max_fingers,
510 if (error) {
512 return error;
543 error = devm_request_threaded_irq(dev, client->irq, NULL, pixcir_ts_isr,
546 if (error) {
548 return error;
554 error = pixcir_set_power_mode(tsdata, PIXCIR_POWER_IDLE);
555 if (error) {
557 return error;
561 error = pixcir_stop(tsdata);
562 if (error)
563 return error;
565 error = input_register_device(input);
566 if (error)
567 return error;