Skip to content

Commit c9e8f5a

Browse files
Shen LichuanAndi Shyti
authored andcommitted
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 <[email protected]> Signed-off-by: Andi Shyti <[email protected]>
1 parent 1272903 commit c9e8f5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/i2c/busses/i2c-imx.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ static void i2c_imx_stop(struct imx_i2c_struct *i2c_imx, bool atomic)
687687
i2c_imx_bus_busy(i2c_imx, 0, atomic);
688688

689689
/* Disable I2C controller */
690-
temp = i2c_imx->hwdata->i2cr_ien_opcode ^ I2CR_IEN,
690+
temp = i2c_imx->hwdata->i2cr_ien_opcode ^ I2CR_IEN;
691691
imx_i2c_write_reg(temp, i2c_imx, IMX_I2C_I2CR);
692692
}
693693

0 commit comments

Comments
 (0)