From: Shen Lichuan Date: Mon, 9 Sep 2024 07:52:57 +0000 (+0800) Subject: i2c: imx: Convert comma to semicolon X-Git-Tag: v6.12-rc1~84^2^2~18 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=c9e8f5a553d05fcbb2bfa7635581ebcbcd2b234a;p=linux-block.git i2c: imx: Convert comma to semicolon To ensure code clarity and prevent potential errors, it's advisable to employ the ';' as a statement separator, except when ',' are intentionally used for specific purposes. Signed-off-by: Shen Lichuan Signed-off-by: Andi Shyti --- diff --git a/drivers/i2c/busses/i2c-imx.c b/drivers/i2c/busses/i2c-imx.c index d68b575e5d18..98539313cbc9 100644 --- a/drivers/i2c/busses/i2c-imx.c +++ b/drivers/i2c/busses/i2c-imx.c @@ -687,7 +687,7 @@ static void i2c_imx_stop(struct imx_i2c_struct *i2c_imx, bool atomic) i2c_imx_bus_busy(i2c_imx, 0, atomic); /* Disable I2C controller */ - temp = i2c_imx->hwdata->i2cr_ien_opcode ^ I2CR_IEN, + temp = i2c_imx->hwdata->i2cr_ien_opcode ^ I2CR_IEN; imx_i2c_write_reg(temp, i2c_imx, IMX_I2C_I2CR); }