mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 15:54:15 +08:00
i2c: microchip: pci1xxxx: Fix comparison of -EPERM against an unsigned variable
The comparison of variable ret with -EPERM is always false because
ret is an u8 type. Fix this by making ret an int.
Cleans up clang warning:
drivers/i2c/busses/i2c-mchp-pci1xxxx.c:714:10: warning: result of comparison
of constant -1 with expression of type 'u8' (aka 'unsigned char') is always
false [-Wtautological-constant-out-of-range-compare]
Fixes: 3616936972
("i2c: microchip: pci1xxxx: Add driver for I2C host controller in multifunction endpoint of pci1xxxx switch")
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
This commit is contained in:
parent
2bca25eaeb
commit
4a74e79b54
@ -708,7 +708,7 @@ static void pci1xxxx_i2c_init(struct pci1xxxx_i2c *i2c)
|
||||
void __iomem *p2 = i2c->i2c_base + SMBUS_STATUS_REG_OFF;
|
||||
void __iomem *p1 = i2c->i2c_base + SMB_GPR_REG;
|
||||
u8 regval;
|
||||
u8 ret;
|
||||
int ret;
|
||||
|
||||
ret = set_sys_lock(i2c);
|
||||
if (ret == -EPERM) {
|
||||
|
Loading…
Reference in New Issue
Block a user