mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-14 18:25:48 -04:00
staging: vt6656: create new structure names to remove typedefs.
This patch and the next 8 patches remove the old structure names and replace; struct vnt_private for DEVICE_INFO and PSDevice struct vnt_manager for SMgmtObject struct vnt_rx_mgmt for SRxMgmtPacket and PSRxMgmtPacket struct vnt_tx_mgmt for STxMgmtPacket and PSTxMgmtPacket and struct vnt_manager vnt_mgmt to replace SMgmtObject sMgmtObj; Applied after patch staging: vt6656: dpc.c :RXbBulkInProcessData clean up RSC Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
7c65fa2a4c
commit
4f4a89c9ce
@@ -392,7 +392,7 @@ typedef struct __device_opt {
|
||||
} OPTIONS, *POPTIONS;
|
||||
|
||||
|
||||
typedef struct __device_info {
|
||||
typedef struct vnt_private {
|
||||
|
||||
// netdev
|
||||
struct usb_device* usb;
|
||||
@@ -525,6 +525,7 @@ typedef struct __device_info {
|
||||
|
||||
|
||||
// 802.11 management
|
||||
struct vnt_manager vnt_mgmt;
|
||||
SMgmtObject sMgmtObj;
|
||||
|
||||
u64 qwCurrTSF;
|
||||
|
||||
@@ -218,8 +218,8 @@ typedef enum tagWMAC_POWER_MODE {
|
||||
|
||||
|
||||
|
||||
// Tx Management Packet descriptor
|
||||
typedef struct tagSTxMgmtPacket {
|
||||
/* Tx Management Packet descriptor */
|
||||
typedef struct vnt_tx_mgmt {
|
||||
|
||||
PUWLAN_80211HDR p80211Header;
|
||||
unsigned int cbMPDULen;
|
||||
@@ -228,8 +228,8 @@ typedef struct tagSTxMgmtPacket {
|
||||
} STxMgmtPacket, *PSTxMgmtPacket;
|
||||
|
||||
|
||||
// Rx Management Packet descriptor
|
||||
typedef struct tagSRxMgmtPacket {
|
||||
/* Rx Management Packet descriptor */
|
||||
typedef struct vnt_rx_mgmt {
|
||||
|
||||
PUWLAN_80211HDR p80211Header;
|
||||
u64 qwLocalTSF;
|
||||
@@ -244,7 +244,7 @@ typedef struct tagSRxMgmtPacket {
|
||||
|
||||
|
||||
|
||||
typedef struct tagSMgmtObject
|
||||
typedef struct vnt_manager
|
||||
{
|
||||
void *pAdapter;
|
||||
// MAC address
|
||||
|
||||
Reference in New Issue
Block a user