aboutsummaryrefslogtreecommitdiff
path: root/drivers/i2c
diff options
context:
space:
mode:
authorGravatar Ruan Jinjie <ruanjinjie@huawei.com> 2023-08-01 10:53:28 +0800
committerGravatar Andi Shyti <andi.shyti@kernel.org> 2023-08-08 15:36:58 +0200
commit0c89b3257b04950b4d66e9739af3e50bf93c74de (patch)
tree60bdbaddf2eb3f73e6dcc4560aa82965445027c2 /drivers/i2c
parenti2c: stm32: Do not check for 0 return after calling platform_get_irq() (diff)
downloadlinux-0c89b3257b04950b4d66e9739af3e50bf93c74de.tar.gz
linux-0c89b3257b04950b4d66e9739af3e50bf93c74de.tar.bz2
linux-0c89b3257b04950b4d66e9739af3e50bf93c74de.zip
i2c: mux: ltc4306: Remove an unnecessary ternary operator
The true or false judgement of the ternary operator is unnecessary in C language semantics. So remove it to clean Code. Signed-off-by: Ruan Jinjie <ruanjinjie@huawei.com> Acked-by: Andi Shyti <andi.shyti@kernel.org> Link: https://lore.kernel.org/r/20230801025328.3380963-1-ruanjinjie@huawei.com Signed-off-by: Andi Shyti <andi.shyti@kernel.org>
Diffstat (limited to 'drivers/i2c')
-rw-r--r--drivers/i2c/muxes/i2c-mux-ltc4306.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/muxes/i2c-mux-ltc4306.c b/drivers/i2c/muxes/i2c-mux-ltc4306.c
index 5a03031519be..637e25506490 100644
--- a/drivers/i2c/muxes/i2c-mux-ltc4306.c
+++ b/drivers/i2c/muxes/i2c-mux-ltc4306.c
@@ -62,7 +62,7 @@ static const struct chip_desc chips[] = {
static bool ltc4306_is_volatile_reg(struct device *dev, unsigned int reg)
{
- return (reg == LTC_REG_CONFIG) ? true : false;
+ return reg == LTC_REG_CONFIG;
}
static const struct regmap_config ltc4306_regmap_config = {