From: Colin Ian King <colin.king@xxxxxxxxxxxxx> Currently the shift of two enum ints by more than 31 places on can result in undefined behaviour with 64 bit longs. Fix this by casting the ints to unsigned long before the shift. Addresses-Coverity: ("Bad shift operation") Fixes: 3a379bbcea0a ("i3c: Add core I3C infrastructure") Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx> --- drivers/i3c/master.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/i3c/master.c b/drivers/i3c/master.c index 1412abcff010..752256d4078f 100644 --- a/drivers/i3c/master.c +++ b/drivers/i3c/master.c @@ -385,8 +385,9 @@ static void i3c_bus_set_addr_slot_status(struct i3c_bus *bus, u16 addr, return; ptr = bus->addrslots + (bitpos / BITS_PER_LONG); - *ptr &= ~(I3C_ADDR_SLOT_STATUS_MASK << (bitpos % BITS_PER_LONG)); - *ptr |= status << (bitpos % BITS_PER_LONG); + *ptr &= ~((unsigned long)I3C_ADDR_SLOT_STATUS_MASK << + (bitpos % BITS_PER_LONG)); + *ptr |= (unsigned long)status << (bitpos % BITS_PER_LONG); } static bool i3c_bus_dev_addr_is_avail(struct i3c_bus *bus, u8 addr) -- 2.20.1