Use page 0xf to program the same value of SDT and short detection settings into all four pages 1..4 . This reduces the I2C traffic slightly. Signed-off-by: Marek Vasut <marex@xxxxxxx> --- Cc: Mauro Carvalho Chehab <mchehab@xxxxxxxxxx> Cc: Michael Tretter <m.tretter@xxxxxxxxxxxxxx> Cc: Pengutronix Kernel Team <kernel@xxxxxxxxxxxxxx> Cc: linux-media@xxxxxxxxxxxxxxx --- drivers/media/i2c/isl7998x.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/drivers/media/i2c/isl7998x.c b/drivers/media/i2c/isl7998x.c index 5f8f11f7a2c1c..7d2799e498520 100644 --- a/drivers/media/i2c/isl7998x.c +++ b/drivers/media/i2c/isl7998x.c @@ -312,14 +312,8 @@ static const struct reg_sequence isl7998x_init_seq_1[] = { { ISL7998X_REG_P0_SHORT_DIAG_IRQ_EN, 0xff }, - { ISL7998X_REG_PX_DEC_SDT(0x1), 0x07 }, - { ISL7998X_REG_PX_DEC_SHORT_DET_CTL_1(0x1), 0x03 }, - { ISL7998X_REG_PX_DEC_SDT(0x2), 0x07 }, - { ISL7998X_REG_PX_DEC_SHORT_DET_CTL_1(0x2), 0x03 }, - { ISL7998X_REG_PX_DEC_SDT(0x3), 0x07 }, - { ISL7998X_REG_PX_DEC_SHORT_DET_CTL_1(0x3), 0x03 }, - { ISL7998X_REG_PX_DEC_SDT(0x4), 0x07 }, - { ISL7998X_REG_PX_DEC_SHORT_DET_CTL_1(0x4), 0x03 }, + { ISL7998X_REG_PX_DEC_SDT(0xf), 0x07 }, + { ISL7998X_REG_PX_DEC_SHORT_DET_CTL_1(0xf), 0x03 }, { ISL7998X_REG_P5_LI_ENGINE_CTL, 0x00 }, { ISL7998X_REG_P0_SW_RESET_CTL, 0x1f, 10 }, { ISL7998X_REG_P0_IO_BUFFER_CTL, 0x00 }, -- 2.43.0