mirror of
https://github.com/torvalds/linux.git
synced 2026-07-28 10:09:10 +02:00
ASoC: rt5575: Use __le32 for SPI burst write address
The addr field in the SPI burst write buffer represents on-wire
little-endian data. Define it as __le32 so that the assignment of
cpu_to_le32() is type correct and avoids sparse endian warnings.
Closes:
https://lore.kernel.org/oe-kbuild-all/202606230139.rFZUVpCa-lkp@intel.com/
Fixes: 420739112e ("ASoC: rt5575: Add the codec driver for the ALC5575")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Oder Chiou <oder_chiou@realtek.com>
Link: https://patch.msgid.link/20260623102514.2422990-1-oder_chiou@realtek.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
e26bb459d0
commit
d0c415f007
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
struct rt5575_spi_burst_write {
|
||||
u8 cmd;
|
||||
u32 addr;
|
||||
__le32 addr;
|
||||
u8 data[RT5575_SPI_BUF_LEN];
|
||||
u8 dummy;
|
||||
} __packed;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user