> err = request_irq(icn85xx_ts->irq, icn85xx_ts_interrupt, > IRQ_TYPE_EDGE_FALLING, "icn85xx_ts", icn85xx_ts); > if (err < 0){ > icn85xx_error("icn85xx_ts_probe: request irq failed\n"); > return err; > } > > 1) Does this correct IRQ settings for TS? If not - what is procedure? > What I have missed? H I recommend using devm_request_threaded_irq instead. The devm_* functions take care of deallocation automatically, and a threaded IRQ handler is much better for slow operations like I2C access IMHO. -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html