diff options
author | Yang Li <yang.lee@linux.alibaba.com> | 2024-06-18 09:18:54 +0800 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2024-07-04 17:38:40 +0100 |
commit | 6b10f1c581f302b12bdd77d06038984a0709e0b0 (patch) | |
tree | a2c45d736b1116a0ca5810c857a15671d72b000f /drivers/mfd | |
parent | d7636117ca976e217b6452c082e7f7c041f4019c (diff) | |
download | lwn-6b10f1c581f302b12bdd77d06038984a0709e0b0.tar.gz lwn-6b10f1c581f302b12bdd77d06038984a0709e0b0.zip |
mfd: tps6594-core: Remove unneeded semicolon in tps6594_check_crc_mode()
Abaci Robot reports:
drivers/mfd/tps6594-core.c:516:2-3: Unneeded semicolon
Let's remove it.
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=9346
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Link: https://lore.kernel.org/r/20240618011854.109426-1-yang.lee@linux.alibaba.com
Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/tps6594-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/tps6594-core.c b/drivers/mfd/tps6594-core.c index c59f3d7e32b0..a7223e873cd1 100644 --- a/drivers/mfd/tps6594-core.c +++ b/drivers/mfd/tps6594-core.c @@ -513,7 +513,7 @@ static int tps6594_check_crc_mode(struct tps6594 *tps, bool primary_pmic) } else { regmap_reg = TPS6594_REG_SERIAL_IF_CONFIG; mask_val = TPS6594_BIT_I2C1_SPI_CRC_EN; - }; + } /* * Check if CRC is enabled. |