[PATCH v7 2/2] i2c: aspeed: support ast2600 i2c new register mode driver
Andi Shyti
andi.shyti at kernel.org
Tue Mar 28 06:12:19 PDT 2023
Hi Ryan,
[...]
> + ret = of_property_read_u32(dev->of_node,
> + "i2c-scl-clk-low-timeout-us",
> + &i2c_bus->timeout);
in your v6 patch this was a boolean value. If you need to keep it
boolean you have the "i2c-scl-has-clk-low-timeout".
> + if (ret < 0) {
> + i2c_bus->timeout = 0;
> + } else {
> + /* i2c timeout counter: use base clk4 1Mhz
> + * per unit: 1/(1000/4096) = 4096us
> + */
> + i2c_bus->timeout /= 4096;
> + }
Can you please run checkpatch.pl before sending the patch?
[...]
> + dev_info(dev, "%s [%d]: adapter [%d khz] mode [%d]\n",
> + dev->of_node->name, i2c_bus->adap.nr, i2c_bus->bus_frequency / 1000,
> + i2c_bus->mode);
> +
> + return 0;
> +
> + return ret;
can you also please do some cleanups before sending the patch?
Thanks,
Andi
More information about the linux-arm-kernel
mailing list