From: Malcolm Priestley Date: Wed, 22 Jul 2015 18:16:39 +0000 (+0100) Subject: staging: vt6655: fix tagSTxDesc -> next_desc type X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=5fa9d9898d370789f12af420c118159a23f166e8;p=openwrt%2Fstaging%2Fblogic.git staging: vt6655: fix tagSTxDesc -> next_desc type Should always be __le32 type 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 8dc53bd72983..26cd3e1af430 100644 --- a/drivers/staging/vt6655/desc.h +++ b/drivers/staging/vt6655/desc.h @@ -267,7 +267,7 @@ typedef struct tagSTxDesc { volatile STDES0 m_td0TD0; volatile STDES1 m_td1TD1; volatile __le32 buff_addr; - volatile u32 next_desc; + volatile __le32 next_desc; struct tagSTxDesc *next __aligned(8); volatile PDEVICE_TD_INFO pTDInfo __aligned(8); } __attribute__ ((__packed__))