diff options
author | Malcolm Priestley <tvboxspy@gmail.com> | 2014-08-30 22:25:36 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-08-30 15:19:16 -0700 |
commit | 9ce842ab3fb0b14428788827b6cdd87496aa3348 (patch) | |
tree | 2704132d0a7fc8d05716254e923723fd72a53454 /drivers/staging/vt6655/rxtx.h | |
parent | 2dd76679cc1160c65e7dc0d0214df5747e352b0a (diff) |
staging: vt6655: replace typedef struct tagSTxDataHead_ab with struct vnt_tx_datahead_ab
Replacing members
ab, wDuration and wTimeStampOff
with
ab, duration and time_stamp_off
All unsigned short should be __le16
Structure is moved to rxtx.h
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6655/rxtx.h')
-rw-r--r-- | drivers/staging/vt6655/rxtx.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/staging/vt6655/rxtx.h b/drivers/staging/vt6655/rxtx.h index 212c2efe209d..4899f6eab8b8 100644 --- a/drivers/staging/vt6655/rxtx.h +++ b/drivers/staging/vt6655/rxtx.h @@ -99,6 +99,12 @@ struct vnt_tx_datahead_g_fb { __le16 time_stamp_off_a; } __packed; +struct vnt_tx_datahead_ab { + struct vnt_phy_field ab; + __le16 duration; + __le16 time_stamp_off; +} __packed; + struct vnt_tx_short_buf_head { __le16 fifo_ctl; u16 time_stamp; |