diff options
author | Takashi Iwai <tiwai@suse.de> | 2018-07-25 17:59:26 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2018-07-26 08:23:45 +0200 |
commit | 69756930f2de0457d51db7d505a1e4f40e9fd116 (patch) | |
tree | f48f116572781a5ab5115fe541fcc9794b12d157 /sound/pci/cs5535audio/cs5535audio.h | |
parent | ALSA: vxpocket: Fix invalid endian conversions (diff) | |
download | linux-69756930f2de0457d51db7d505a1e4f40e9fd116.tar.xz linux-69756930f2de0457d51db7d505a1e4f40e9fd116.zip |
ALSA: cs5535audio: Fix invalid endian conversion
One place in cs5535audio_build_dma_packets() does an extra conversion
via cpu_to_le32(); namely jmpprd_addr is passed to setup_prd() ops,
which writes the value via cs_writel(). That is, the callback does
the conversion by itself, and we don't need to convert beforehand.
This patch fixes that bogus conversion.
Cc: <stable@vger.kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/cs5535audio/cs5535audio.h')
-rw-r--r-- | sound/pci/cs5535audio/cs5535audio.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/pci/cs5535audio/cs5535audio.h b/sound/pci/cs5535audio/cs5535audio.h index f4fcdf93f3c8..d84620a0c26c 100644 --- a/sound/pci/cs5535audio/cs5535audio.h +++ b/sound/pci/cs5535audio/cs5535audio.h @@ -67,9 +67,9 @@ struct cs5535audio_dma_ops { }; struct cs5535audio_dma_desc { - u32 addr; - u16 size; - u16 ctlreserved; + __le32 addr; + __le16 size; + __le16 ctlreserved; }; struct cs5535audio_dma { |