Input: qt602240_ts - Skip matrix size check From: Iiro Valkonen <iiro.valkonen@xxxxxxxxx> Skip the mxt224-specific matrix size check Signed-off-by: Iiro Valkonen <iiro.valkonen@xxxxxxxxx> --- drivers/input/touchscreen/qt602240_ts.c | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/drivers/input/touchscreen/qt602240_ts.c b/drivers/input/touchscreen/qt602240_ts.c index 6ef8290..a88ec93 100644 --- a/drivers/input/touchscreen/qt602240_ts.c +++ b/drivers/input/touchscreen/qt602240_ts.c @@ -862,10 +862,17 @@ static int mxt_initialize(struct mxt_data *data) if (error) return error; + /* + * Skip this and trust what's on the chip, as the current check + * is not compatible with mXT1386. Revisit and fix. + */ /* Check X/Y matrix size */ + + /* error = mxt_check_matrix_size(data); if (error) return error; + */ error = mxt_make_highchg(data); if (error) -- 1.7.0.4 -- 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