Skip to content

Commit

Permalink
staging: vt6656: code cleanup, replaced U32 macro with u32
Browse files Browse the repository at this point in the history
Removed custom macro for unsigned 32-bit integers.

Signed-off-by: Andres More <more.andres@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Andres More authored and Greg Kroah-Hartman committed May 14, 2010
1 parent 26233e6 commit 659770d
Show file tree
Hide file tree
Showing 3 changed files with 112 additions and 137 deletions.
8 changes: 4 additions & 4 deletions drivers/staging/vt6656/device.h
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ typedef struct __device_opt {
int short_retry;
int long_retry;
int bbp_type;
U32 flags;
u32 flags;
} OPTIONS, *POPTIONS;


Expand All @@ -453,17 +453,17 @@ typedef struct __device_info {
struct tasklet_struct ReadWorkItem;
struct tasklet_struct RxMngWorkItem;

U32 rx_buf_sz;
u32 rx_buf_sz;
int multicast_limit;
BYTE byRxMode;

spinlock_t lock;

U32 rx_bytes;
u32 rx_bytes;

BYTE byRevId;

U32 flags;
u32 flags;
ULONG Flags;

SCache sDupRxCache;
Expand Down
Loading

0 comments on commit 659770d

Please sign in to comment.