Skip to content

Commit

Permalink
staging: vt6656: 64 bit fixes: rxtx.h Replace DWORD with u32.
Browse files Browse the repository at this point in the history
Size of long issues.

 Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>

Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Malcolm Priestley authored and Greg Kroah-Hartman committed Nov 13, 2012
1 parent a552397 commit ed74395
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/staging/vt6656/rxtx.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ typedef struct tagSCTSDataF {
// MICHDR data header
//
typedef struct tagSMICHDR {
DWORD adwHDR0[4];
DWORD adwHDR1[4];
DWORD adwHDR2[4];
u32 adwHDR0[4];
u32 adwHDR1[4];
u32 adwHDR2[4];
} SMICHDR, *PSMICHDR;


Expand Down Expand Up @@ -630,7 +630,7 @@ typedef struct tagSTX_BUFFER
BYTE byPKTNO;
WORD wTxByteCount;

DWORD adwTxKey[4];
u32 adwTxKey[4];
WORD wFIFOCtl;
WORD wTimeStamp;
WORD wFragCtl;
Expand Down

0 comments on commit ed74395

Please sign in to comment.