Re: [PATCH 1/3] mfd: tqmx86: do not access I2C_DETECT register through io_base

From: Andrew Lunn
Date: Thu Feb 16 2023 - 12:19:39 EST


> - i2c_det = ioread8(io_base + TQMX86_REG_I2C_DETECT);
> + i2c_det = inb(TQMX86_REG_I2C_DETECT);

I think it would be good to add a comment, since it now looks out of
place compared to all the other ioread8().

Andrew