Skip to content

Commit 8edc794

Browse files
committed
Merge remote-tracking branch 'regmap/for-next' into sound/upstream-20260528
2 parents 31d9227 + 25e3c70 commit 8edc794

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/base/regmap/regmap-i2c.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ static int regmap_smbus_word_write_reg16(void *context, const void *data,
337337
val = ((u8 *)data)[2];
338338

339339
return i2c_smbus_write_word_data(i2c, addr_hi,
340-
cpu_to_le16(((u16)val << 8) | addr_lo));
340+
((u16)val << 8) | addr_lo);
341341
}
342342

343343
static const struct regmap_bus regmap_smbus_byte_word_reg16 = {

0 commit comments

Comments
 (0)