struct semaphore LowPowerModeSync;
ULONG liDrainCalculated;
UINT gpioBitMap;
- S_BCM_DEBUG_STATE stDebugState;
+ struct bcm_debug_state stDebugState;
};
#define GET_BCM_ADAPTER(net_dev) netdev_priv(net_dev)
} __packed USER_BCM_DBG_STATE;
/* ---Kernel-space mapping of Debug State */
-typedef struct _S_BCM_DEBUG_STATE {
+struct bcm_debug_state {
unsigned int type;
/* A bitmap of 32 bits for Subtype per Type.
* Valid indexes in 'subtype' array are *only* 1,2,4 and 8,
*/
unsigned int subtype[(NUMTYPES*2)+1];
unsigned int debug_level;
-} S_BCM_DEBUG_STATE;
+};
/* Instantiated in the Adapter structure
* We'll reuse the debug level parameter to include a bit (the MSB) to indicate whether or not
* we want the function's name printed.