aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sound/pci/atiixp.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2018-07-25 23:24:12 +0200
committerTakashi Iwai <tiwai@suse.de>2018-07-27 09:06:12 +0200
commitc44a81a40af0e1aa52b88d1c60682e30c411fb23 (patch)
tree704216cb5999061f8280e5f21eaf245db8c58b97 /sound/pci/atiixp.c
parentALSA: bt87x: Proper endian notations (diff)
downloadwireguard-linux-c44a81a40af0e1aa52b88d1c60682e30c411fb23.tar.xz
wireguard-linux-c44a81a40af0e1aa52b88d1c60682e30c411fb23.zip
ALSA: atiixp: Proper endian notations
The DMA address table in atiixp driver is in little-endian, hence we should define it with __le32 properly. Spotted by sparse, a warning like: sound/pci/atiixp.c:393:28: warning: incorrect type in assignment (different base types) Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/atiixp.c')
-rw-r--r--sound/pci/atiixp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/atiixp.c b/sound/pci/atiixp.c
index 7ae63d452bba..a1e4944dcfe8 100644
--- a/sound/pci/atiixp.c
+++ b/sound/pci/atiixp.c
@@ -207,10 +207,10 @@ struct atiixp;
*/
struct atiixp_dma_desc {
- u32 addr; /* DMA buffer address */
+ __le32 addr; /* DMA buffer address */
u16 status; /* status bits */
u16 size; /* size of the packet in dwords */
- u32 next; /* address of the next packet descriptor */
+ __le32 next; /* address of the next packet descriptor */
};
/*