From: Malcolm Priestley Date: Wed, 22 Jul 2015 18:16:42 +0000 (+0100) Subject: staging: vt6655: fix tagSRxDesc -> next_desc type X-Git-Tag: v4.3-rc1~158^2~525 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f1e3e92135202ff3d95195393ee62808c109208c;p=karo-tx-linux.git staging: vt6655: fix tagSRxDesc -> next_desc type Should always be __le32 Signed-off-by: Malcolm Priestley Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/vt6655/desc.h b/drivers/staging/vt6655/desc.h index 42e005a5de9b..251f7bcb9bad 100644 --- a/drivers/staging/vt6655/desc.h +++ b/drivers/staging/vt6655/desc.h @@ -209,7 +209,7 @@ typedef struct tagSRxDesc { volatile SRDES0 m_rd0RD0; volatile SRDES1 m_rd1RD1; volatile __le32 buff_addr; - volatile u32 next_desc; + volatile __le32 next_desc; struct tagSRxDesc *next __aligned(8); volatile PDEVICE_RD_INFO pRDInfo __aligned(8); } __attribute__ ((__packed__))