aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/i2c/busses
diff options
context:
space:
mode:
authorBence Csókás <bence98@sch.bme.hu>2023-10-30 17:19:10 +0000
committerWolfram Sang <wsa@kernel.org>2023-11-08 10:27:17 +0100
commitbdba49cbba41f0bea54fc93529bbef4d6ceaa3cd (patch)
tree167db8d762dd80948c424a35a0799894e992e596 /drivers/i2c/busses
parentcc9c54232f04aef3a5d7f64a0ece7df00f1aaa3d (diff)
downloadlinux-bdba49cbba41f0bea54fc93529bbef4d6ceaa3cd.tar.gz
i2c: cp2615: Fix 'assignment to __be16' warning
While the preamble field _is_ technically big-endian, its value is always 0x2A2A, which is the same in either endianness. However, to avoid generating a warning, we should still call `htons()` explicitly. Signed-off-by: Bence Csókás <bence98@sch.bme.hu> Signed-off-by: Wolfram Sang <wsa@kernel.org>
Diffstat (limited to 'drivers/i2c/busses')
-rw-r--r--drivers/i2c/busses/i2c-cp2615.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-cp2615.c b/drivers/i2c/busses/i2c-cp2615.c
index 20f8f7c9a8cd45..cf3747d870342e 100644
--- a/drivers/i2c/busses/i2c-cp2615.c
+++ b/drivers/i2c/busses/i2c-cp2615.c
@@ -85,7 +85,7 @@ static int cp2615_init_iop_msg(struct cp2615_iop_msg *ret, enum cp2615_iop_msg_t
if (!ret)
return -EINVAL;
- ret->preamble = 0x2A2A;
+ ret->preamble = htons(0x2A2AU);
ret->length = htons(data_len + 6);
ret->msg = htons(msg);
if (data && data_len)