Staging: bcm: Correctly format all comments in Adapter.h
This patch correctly formats all comments as reported by checkpatch.pl. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
90942140bf
commit
5db647a3b6
1 changed files with 66 additions and 61 deletions
|
@ -34,7 +34,7 @@ struct link_request {
|
||||||
} __attribute__((packed));
|
} __attribute__((packed));
|
||||||
typedef struct link_request LINK_REQUEST, *PLINK_REQUEST;
|
typedef struct link_request LINK_REQUEST, *PLINK_REQUEST;
|
||||||
|
|
||||||
//classification extension is added
|
/* classification extension is added */
|
||||||
typedef struct _ADD_CONNECTION {
|
typedef struct _ADD_CONNECTION {
|
||||||
ULONG SrcIpAddressCount;
|
ULONG SrcIpAddressCount;
|
||||||
ULONG SrcIpAddress[MAX_CONNECTIONS];
|
ULONG SrcIpAddress[MAX_CONNECTIONS];
|
||||||
|
@ -83,12 +83,12 @@ typedef struct _CLASSIFICATION_ONLY {
|
||||||
|
|
||||||
typedef union _U_IP_ADDRESS {
|
typedef union _U_IP_ADDRESS {
|
||||||
struct {
|
struct {
|
||||||
ULONG ulIpv4Addr[MAX_IP_RANGE_LENGTH];//Source Ip Address Range
|
ULONG ulIpv4Addr[MAX_IP_RANGE_LENGTH]; /* Source Ip Address Range */
|
||||||
ULONG ulIpv4Mask[MAX_IP_RANGE_LENGTH];//Source Ip Mask Address Range
|
ULONG ulIpv4Mask[MAX_IP_RANGE_LENGTH]; /* Source Ip Mask Address Range */
|
||||||
};
|
};
|
||||||
struct {
|
struct {
|
||||||
ULONG ulIpv6Addr[MAX_IP_RANGE_LENGTH * 4];//Source Ip Address Range
|
ULONG ulIpv6Addr[MAX_IP_RANGE_LENGTH * 4]; /* Source Ip Address Range */
|
||||||
ULONG ulIpv6Mask[MAX_IP_RANGE_LENGTH * 4];//Source Ip Mask Address Range
|
ULONG ulIpv6Mask[MAX_IP_RANGE_LENGTH * 4]; /* Source Ip Mask Address Range */
|
||||||
};
|
};
|
||||||
struct {
|
struct {
|
||||||
UCHAR ucIpv4Address[MAX_IP_RANGE_LENGTH * IP_LENGTH_OF_ADDRESS];
|
UCHAR ucIpv4Address[MAX_IP_RANGE_LENGTH * IP_LENGTH_OF_ADDRESS];
|
||||||
|
@ -102,8 +102,8 @@ typedef union _U_IP_ADDRESS {
|
||||||
struct _packet_info;
|
struct _packet_info;
|
||||||
|
|
||||||
typedef struct _S_HDR_SUPRESSION_CONTEXTINFO {
|
typedef struct _S_HDR_SUPRESSION_CONTEXTINFO {
|
||||||
UCHAR ucaHdrSupressionInBuf[MAX_PHS_LENGTHS]; //Intermediate buffer to accumulate pkt Header for PHS
|
UCHAR ucaHdrSupressionInBuf[MAX_PHS_LENGTHS]; /* Intermediate buffer to accumulate pkt Header for PHS */
|
||||||
UCHAR ucaHdrSupressionOutBuf[MAX_PHS_LENGTHS + PHSI_LEN]; //Intermediate buffer containing pkt Header after PHS
|
UCHAR ucaHdrSupressionOutBuf[MAX_PHS_LENGTHS + PHSI_LEN]; /* Intermediate buffer containing pkt Header after PHS */
|
||||||
} S_HDR_SUPRESSION_CONTEXTINFO;
|
} S_HDR_SUPRESSION_CONTEXTINFO;
|
||||||
|
|
||||||
typedef struct _S_CLASSIFIER_RULE {
|
typedef struct _S_CLASSIFIER_RULE {
|
||||||
|
@ -112,19 +112,19 @@ typedef struct _S_CLASSIFIER_RULE {
|
||||||
B_UINT16 uiClassifierRuleIndex;
|
B_UINT16 uiClassifierRuleIndex;
|
||||||
BOOLEAN bUsed;
|
BOOLEAN bUsed;
|
||||||
USHORT usVCID_Value;
|
USHORT usVCID_Value;
|
||||||
B_UINT8 u8ClassifierRulePriority; //This field detemines the Classifier Priority
|
B_UINT8 u8ClassifierRulePriority; /* This field detemines the Classifier Priority */
|
||||||
U_IP_ADDRESS stSrcIpAddress;
|
U_IP_ADDRESS stSrcIpAddress;
|
||||||
UCHAR ucIPSourceAddressLength;//Ip Source Address Length
|
UCHAR ucIPSourceAddressLength; /* Ip Source Address Length */
|
||||||
|
|
||||||
U_IP_ADDRESS stDestIpAddress;
|
U_IP_ADDRESS stDestIpAddress;
|
||||||
UCHAR ucIPDestinationAddressLength;//Ip Destination Address Length
|
UCHAR ucIPDestinationAddressLength; /* Ip Destination Address Length */
|
||||||
UCHAR ucIPTypeOfServiceLength;//Type of service Length
|
UCHAR ucIPTypeOfServiceLength; /* Type of service Length */
|
||||||
UCHAR ucTosLow;//Tos Low
|
UCHAR ucTosLow; /* Tos Low */
|
||||||
UCHAR ucTosHigh;//Tos High
|
UCHAR ucTosHigh; /* Tos High */
|
||||||
UCHAR ucTosMask;//Tos Mask
|
UCHAR ucTosMask; /* Tos Mask */
|
||||||
|
|
||||||
UCHAR ucProtocolLength;//protocol Length
|
UCHAR ucProtocolLength; /* protocol Length */
|
||||||
UCHAR ucProtocol[MAX_PROTOCOL_LENGTH];//protocol Length
|
UCHAR ucProtocol[MAX_PROTOCOL_LENGTH]; /* protocol Length */
|
||||||
USHORT usSrcPortRangeLo[MAX_PORT_RANGE];
|
USHORT usSrcPortRangeLo[MAX_PORT_RANGE];
|
||||||
USHORT usSrcPortRangeHi[MAX_PORT_RANGE];
|
USHORT usSrcPortRangeHi[MAX_PORT_RANGE];
|
||||||
UCHAR ucSrcPortRangeLength;
|
UCHAR ucSrcPortRangeLength;
|
||||||
|
@ -138,14 +138,14 @@ typedef struct _S_CLASSIFIER_RULE {
|
||||||
BOOLEAN bDestIpValid;
|
BOOLEAN bDestIpValid;
|
||||||
BOOLEAN bSrcIpValid;
|
BOOLEAN bSrcIpValid;
|
||||||
|
|
||||||
//For IPv6 Addressing
|
/* For IPv6 Addressing */
|
||||||
UCHAR ucDirection;
|
UCHAR ucDirection;
|
||||||
BOOLEAN bIpv6Protocol;
|
BOOLEAN bIpv6Protocol;
|
||||||
UINT32 u32PHSRuleID;
|
UINT32 u32PHSRuleID;
|
||||||
S_PHS_RULE sPhsRule;
|
S_PHS_RULE sPhsRule;
|
||||||
UCHAR u8AssociatedPHSI;
|
UCHAR u8AssociatedPHSI;
|
||||||
|
|
||||||
//Classification fields for ETH CS
|
/* Classification fields for ETH CS */
|
||||||
UCHAR ucEthCSSrcMACLen;
|
UCHAR ucEthCSSrcMACLen;
|
||||||
UCHAR au8EThCSSrcMAC[MAC_ADDRESS_SIZE];
|
UCHAR au8EThCSSrcMAC[MAC_ADDRESS_SIZE];
|
||||||
UCHAR au8EThCSSrcMACMask[MAC_ADDRESS_SIZE];
|
UCHAR au8EThCSSrcMACMask[MAC_ADDRESS_SIZE];
|
||||||
|
@ -158,7 +158,7 @@ typedef struct _S_CLASSIFIER_RULE {
|
||||||
USHORT usVLANID;
|
USHORT usVLANID;
|
||||||
USHORT usValidityBitMap;
|
USHORT usValidityBitMap;
|
||||||
} S_CLASSIFIER_RULE;
|
} S_CLASSIFIER_RULE;
|
||||||
//typedef struct _S_CLASSIFIER_RULE S_CLASSIFIER_RULE;
|
/* typedef struct _S_CLASSIFIER_RULE S_CLASSIFIER_RULE; */
|
||||||
|
|
||||||
typedef struct _S_FRAGMENTED_PACKET_INFO {
|
typedef struct _S_FRAGMENTED_PACKET_INFO {
|
||||||
BOOLEAN bUsed;
|
BOOLEAN bUsed;
|
||||||
|
@ -169,20 +169,20 @@ typedef struct _S_FRAGMENTED_PACKET_INFO {
|
||||||
} S_FRAGMENTED_PACKET_INFO, *PS_FRAGMENTED_PACKET_INFO;
|
} S_FRAGMENTED_PACKET_INFO, *PS_FRAGMENTED_PACKET_INFO;
|
||||||
|
|
||||||
struct _packet_info {
|
struct _packet_info {
|
||||||
//classification extension Rule
|
/* classification extension Rule */
|
||||||
ULONG ulSFID;
|
ULONG ulSFID;
|
||||||
USHORT usVCID_Value;
|
USHORT usVCID_Value;
|
||||||
UINT uiThreshold;
|
UINT uiThreshold;
|
||||||
// This field determines the priority of the SF Queues
|
/* This field determines the priority of the SF Queues */
|
||||||
B_UINT8 u8TrafficPriority;
|
B_UINT8 u8TrafficPriority;
|
||||||
|
|
||||||
BOOLEAN bValid;
|
BOOLEAN bValid;
|
||||||
BOOLEAN bActive;
|
BOOLEAN bActive;
|
||||||
BOOLEAN bActivateRequestSent;
|
BOOLEAN bActivateRequestSent;
|
||||||
|
|
||||||
B_UINT8 u8QueueType;//BE or rtPS
|
B_UINT8 u8QueueType; /* BE or rtPS */
|
||||||
|
|
||||||
UINT uiMaxBucketSize;//maximum size of the bucket for the queue
|
UINT uiMaxBucketSize; /* maximum size of the bucket for the queue */
|
||||||
UINT uiCurrentQueueDepthOnTarget;
|
UINT uiCurrentQueueDepthOnTarget;
|
||||||
UINT uiCurrentBytesOnHost;
|
UINT uiCurrentBytesOnHost;
|
||||||
UINT uiCurrentPacketsOnHost;
|
UINT uiCurrentPacketsOnHost;
|
||||||
|
@ -255,22 +255,22 @@ typedef struct _PER_TARANG_DATA {
|
||||||
typedef struct _TARGET_PARAMS {
|
typedef struct _TARGET_PARAMS {
|
||||||
B_UINT32 m_u32CfgVersion;
|
B_UINT32 m_u32CfgVersion;
|
||||||
|
|
||||||
// Scanning Related Params
|
/* Scanning Related Params */
|
||||||
B_UINT32 m_u32CenterFrequency;
|
B_UINT32 m_u32CenterFrequency;
|
||||||
B_UINT32 m_u32BandAScan;
|
B_UINT32 m_u32BandAScan;
|
||||||
B_UINT32 m_u32BandBScan;
|
B_UINT32 m_u32BandBScan;
|
||||||
B_UINT32 m_u32BandCScan;
|
B_UINT32 m_u32BandCScan;
|
||||||
|
|
||||||
// QoS Params
|
/* QoS Params */
|
||||||
B_UINT32 m_u32minGrantsize; // size of minimum grant is 0 or 6
|
B_UINT32 m_u32minGrantsize; /* size of minimum grant is 0 or 6 */
|
||||||
B_UINT32 m_u32PHSEnable;
|
B_UINT32 m_u32PHSEnable;
|
||||||
|
|
||||||
// HO Params
|
/* HO Params */
|
||||||
B_UINT32 m_u32HoEnable;
|
B_UINT32 m_u32HoEnable;
|
||||||
B_UINT32 m_u32HoReserved1;
|
B_UINT32 m_u32HoReserved1;
|
||||||
B_UINT32 m_u32HoReserved2;
|
B_UINT32 m_u32HoReserved2;
|
||||||
|
|
||||||
// Power Control Params
|
/* Power Control Params */
|
||||||
B_UINT32 m_u32MimoEnable;
|
B_UINT32 m_u32MimoEnable;
|
||||||
B_UINT32 m_u32SecurityEnable;
|
B_UINT32 m_u32SecurityEnable;
|
||||||
/*
|
/*
|
||||||
|
@ -279,22 +279,23 @@ typedef struct _TARGET_PARAMS {
|
||||||
*/
|
*/
|
||||||
B_UINT32 m_u32PowerSavingModesEnable;
|
B_UINT32 m_u32PowerSavingModesEnable;
|
||||||
/* PowerSaving Mode Options:
|
/* PowerSaving Mode Options:
|
||||||
bit 0 = 1: CPE mode - to keep pcmcia if alive;
|
* bit 0 = 1: CPE mode - to keep pcmcia if alive;
|
||||||
bit 1 = 1: CINR reporing in Idlemode Msg
|
* bit 1 = 1: CINR reporing in Idlemode Msg
|
||||||
bit 2 = 1: Default PSC Enable in sleepmode*/
|
* bit 2 = 1: Default PSC Enable in sleepmode
|
||||||
|
*/
|
||||||
B_UINT32 m_u32PowerSavingModeOptions;
|
B_UINT32 m_u32PowerSavingModeOptions;
|
||||||
|
|
||||||
B_UINT32 m_u32ArqEnable;
|
B_UINT32 m_u32ArqEnable;
|
||||||
|
|
||||||
// From Version #3, the HARQ section renamed as general
|
/* From Version #3, the HARQ section renamed as general */
|
||||||
B_UINT32 m_u32HarqEnable;
|
B_UINT32 m_u32HarqEnable;
|
||||||
// EEPROM Param Location
|
/* EEPROM Param Location */
|
||||||
B_UINT32 m_u32EEPROMFlag;
|
B_UINT32 m_u32EEPROMFlag;
|
||||||
/* BINARY TYPE - 4th MSByte:
|
/* BINARY TYPE - 4th MSByte:
|
||||||
* Interface Type - 3rd MSByte:
|
* Interface Type - 3rd MSByte:
|
||||||
* Vendor Type - 2nd MSByte
|
* Vendor Type - 2nd MSByte
|
||||||
*/
|
*/
|
||||||
// Unused - LSByte
|
/* Unused - LSByte */
|
||||||
B_UINT32 m_u32Customize;
|
B_UINT32 m_u32Customize;
|
||||||
B_UINT32 m_u32ConfigBW; /* In Hz */
|
B_UINT32 m_u32ConfigBW; /* In Hz */
|
||||||
B_UINT32 m_u32ShutDownTimer;
|
B_UINT32 m_u32ShutDownTimer;
|
||||||
|
@ -315,7 +316,7 @@ typedef struct _TARGET_PARAMS {
|
||||||
B_UINT32 m_u32MaxMACDataperULFrame;
|
B_UINT32 m_u32MaxMACDataperULFrame;
|
||||||
B_UINT32 m_u32Corr2MacFlags;
|
B_UINT32 m_u32Corr2MacFlags;
|
||||||
|
|
||||||
//adding driver params.
|
/* adding driver params. */
|
||||||
B_UINT32 HostDrvrConfig1;
|
B_UINT32 HostDrvrConfig1;
|
||||||
B_UINT32 HostDrvrConfig2;
|
B_UINT32 HostDrvrConfig2;
|
||||||
B_UINT32 HostDrvrConfig3;
|
B_UINT32 HostDrvrConfig3;
|
||||||
|
@ -324,8 +325,9 @@ typedef struct _TARGET_PARAMS {
|
||||||
B_UINT32 HostDrvrConfig6;
|
B_UINT32 HostDrvrConfig6;
|
||||||
B_UINT32 m_u32SegmentedPUSCenable;
|
B_UINT32 m_u32SegmentedPUSCenable;
|
||||||
|
|
||||||
// BAMC enable - but 4.x does not support this feature
|
/* BAMC enable - but 4.x does not support this feature
|
||||||
// This is added just to sync 4.x and 5.x CFGs
|
* This is added just to sync 4.x and 5.x CFGs
|
||||||
|
*/
|
||||||
B_UINT32 m_u32BandAMCEnable;
|
B_UINT32 m_u32BandAMCEnable;
|
||||||
} STARGETPARAMS, *PSTARGETPARAMS;
|
} STARGETPARAMS, *PSTARGETPARAMS;
|
||||||
#endif
|
#endif
|
||||||
|
@ -340,9 +342,9 @@ typedef INT (*FP_FLASH_WRITE)(struct _MINI_ADAPTER *, UINT, PVOID);
|
||||||
|
|
||||||
typedef INT (*FP_FLASH_WRITE_STATUS)(struct _MINI_ADAPTER *, UINT, PVOID);
|
typedef INT (*FP_FLASH_WRITE_STATUS)(struct _MINI_ADAPTER *, UINT, PVOID);
|
||||||
|
|
||||||
/**
|
/*
|
||||||
Driver adapter data structure
|
* Driver adapter data structure
|
||||||
*/
|
*/
|
||||||
struct _MINI_ADAPTER {
|
struct _MINI_ADAPTER {
|
||||||
struct _MINI_ADAPTER *next;
|
struct _MINI_ADAPTER *next;
|
||||||
struct net_device *dev;
|
struct net_device *dev;
|
||||||
|
@ -365,14 +367,15 @@ struct _MINI_ADAPTER {
|
||||||
spinlock_t control_queue_lock;
|
spinlock_t control_queue_lock;
|
||||||
wait_queue_head_t process_read_wait_queue;
|
wait_queue_head_t process_read_wait_queue;
|
||||||
|
|
||||||
// the pointer to the first packet we have queued in send
|
/* the pointer to the first packet we have queued in send
|
||||||
// deserialized miniport support variables
|
* deserialized miniport support variables
|
||||||
|
*/
|
||||||
atomic_t TotalPacketCount;
|
atomic_t TotalPacketCount;
|
||||||
atomic_t TxPktAvail;
|
atomic_t TxPktAvail;
|
||||||
|
|
||||||
// this to keep track of the Tx and Rx MailBox Registers.
|
/* this to keep track of the Tx and Rx MailBox Registers. */
|
||||||
atomic_t CurrNumFreeTxDesc;
|
atomic_t CurrNumFreeTxDesc;
|
||||||
// to keep track the no of byte received
|
/* to keep track the no of byte received */
|
||||||
USHORT PrevNumRecvDescs;
|
USHORT PrevNumRecvDescs;
|
||||||
USHORT CurrNumRecvDescs;
|
USHORT CurrNumRecvDescs;
|
||||||
UINT u32TotalDSD;
|
UINT u32TotalDSD;
|
||||||
|
@ -459,7 +462,7 @@ struct _MINI_ADAPTER {
|
||||||
BOOLEAN bShutStatus;
|
BOOLEAN bShutStatus;
|
||||||
BOOLEAN bWakeUpDevice;
|
BOOLEAN bWakeUpDevice;
|
||||||
unsigned int usIdleModePattern;
|
unsigned int usIdleModePattern;
|
||||||
//BOOLEAN bTriedToWakeUpFromShutdown;
|
/* BOOLEAN bTriedToWakeUpFromShutdown; */
|
||||||
BOOLEAN bLinkDownRequested;
|
BOOLEAN bLinkDownRequested;
|
||||||
int downloadDDR;
|
int downloadDDR;
|
||||||
PHS_DEVICE_EXTENSION stBCMPhsContext;
|
PHS_DEVICE_EXTENSION stBCMPhsContext;
|
||||||
|
@ -481,8 +484,9 @@ struct _MINI_ADAPTER {
|
||||||
BOOLEAN bStatusWrite;
|
BOOLEAN bStatusWrite;
|
||||||
UINT uiNVMDSDSize;
|
UINT uiNVMDSDSize;
|
||||||
UINT uiVendorExtnFlag;
|
UINT uiVendorExtnFlag;
|
||||||
//it will always represent chosen DSD at any point of time.
|
/* it will always represent chosen DSD at any point of time.
|
||||||
// Generally it is Active DSD but in case of NVM RD/WR it might be different.
|
* Generally it is Active DSD but in case of NVM RD/WR it might be different.
|
||||||
|
*/
|
||||||
UINT ulFlashCalStart;
|
UINT ulFlashCalStart;
|
||||||
ULONG ulFlashControlSectionStart;
|
ULONG ulFlashControlSectionStart;
|
||||||
ULONG ulFlashWriteSize;
|
ULONG ulFlashWriteSize;
|
||||||
|
@ -493,30 +497,30 @@ struct _MINI_ADAPTER {
|
||||||
struct semaphore NVMRdmWrmLock;
|
struct semaphore NVMRdmWrmLock;
|
||||||
struct device *pstCreatedClassDevice;
|
struct device *pstCreatedClassDevice;
|
||||||
|
|
||||||
// BOOLEAN InterfaceUpStatus;
|
/* BOOLEAN InterfaceUpStatus; */
|
||||||
PFLASH2X_CS_INFO psFlash2xCSInfo;
|
PFLASH2X_CS_INFO psFlash2xCSInfo;
|
||||||
PFLASH_CS_INFO psFlashCSInfo;
|
PFLASH_CS_INFO psFlashCSInfo;
|
||||||
PFLASH2X_VENDORSPECIFIC_INFO psFlash2xVendorInfo;
|
PFLASH2X_VENDORSPECIFIC_INFO psFlash2xVendorInfo;
|
||||||
UINT uiFlashBaseAdd; //Flash start address
|
UINT uiFlashBaseAdd; /* Flash start address */
|
||||||
UINT uiActiveISOOffset; //Active ISO offset chosen before f/w download
|
UINT uiActiveISOOffset; /* Active ISO offset chosen before f/w download */
|
||||||
FLASH2X_SECTION_VAL eActiveISO; //Active ISO section val
|
FLASH2X_SECTION_VAL eActiveISO; /* Active ISO section val */
|
||||||
FLASH2X_SECTION_VAL eActiveDSD; //Active DSD val chosen before f/w download
|
FLASH2X_SECTION_VAL eActiveDSD; /* Active DSD val chosen before f/w download */
|
||||||
UINT uiActiveDSDOffsetAtFwDld; //For accessing Active DSD chosen before f/w download
|
UINT uiActiveDSDOffsetAtFwDld; /* For accessing Active DSD chosen before f/w download */
|
||||||
UINT uiFlashLayoutMajorVersion;
|
UINT uiFlashLayoutMajorVersion;
|
||||||
UINT uiFlashLayoutMinorVersion;
|
UINT uiFlashLayoutMinorVersion;
|
||||||
BOOLEAN bAllDSDWriteAllow;
|
BOOLEAN bAllDSDWriteAllow;
|
||||||
BOOLEAN bSigCorrupted;
|
BOOLEAN bSigCorrupted;
|
||||||
//this should be set who so ever want to change the Headers. after Wrtie it should be reset immediately.
|
/* this should be set who so ever want to change the Headers. after Wrtie it should be reset immediately. */
|
||||||
BOOLEAN bHeaderChangeAllowed;
|
BOOLEAN bHeaderChangeAllowed;
|
||||||
INT SelectedChip;
|
INT SelectedChip;
|
||||||
BOOLEAN bEndPointHalted;
|
BOOLEAN bEndPointHalted;
|
||||||
//while bFlashRawRead will be true, Driver ignore map lay out and consider flash as of without any map.
|
/* while bFlashRawRead will be true, Driver ignore map lay out and consider flash as of without any map. */
|
||||||
BOOLEAN bFlashRawRead;
|
BOOLEAN bFlashRawRead;
|
||||||
BOOLEAN bPreparingForLowPowerMode;
|
BOOLEAN bPreparingForLowPowerMode;
|
||||||
BOOLEAN bDoSuspend;
|
BOOLEAN bDoSuspend;
|
||||||
UINT syscfgBefFwDld;
|
UINT syscfgBefFwDld;
|
||||||
BOOLEAN StopAllXaction;
|
BOOLEAN StopAllXaction;
|
||||||
UINT32 liTimeSinceLastNetEntry; //Used to Support extended CAPI requirements from
|
UINT32 liTimeSinceLastNetEntry; /* Used to Support extended CAPI requirements from */
|
||||||
struct semaphore LowPowerModeSync;
|
struct semaphore LowPowerModeSync;
|
||||||
ULONG liDrainCalculated;
|
ULONG liDrainCalculated;
|
||||||
UINT gpioBitMap;
|
UINT gpioBitMap;
|
||||||
|
@ -539,7 +543,7 @@ typedef struct FirmwareInfo {
|
||||||
ULONG u32StartingAddress;
|
ULONG u32StartingAddress;
|
||||||
} __attribute__((packed)) FIRMWARE_INFO, *PFIRMWARE_INFO;
|
} __attribute__((packed)) FIRMWARE_INFO, *PFIRMWARE_INFO;
|
||||||
|
|
||||||
// holds the value of net_device structure..
|
/* holds the value of net_device structure.. */
|
||||||
extern struct net_device *gblpnetdev;
|
extern struct net_device *gblpnetdev;
|
||||||
typedef struct _cntl_pkt {
|
typedef struct _cntl_pkt {
|
||||||
PMINI_ADAPTER Adapter;
|
PMINI_ADAPTER Adapter;
|
||||||
|
@ -554,9 +558,10 @@ typedef struct _DDR_SETTING {
|
||||||
typedef DDR_SETTING DDR_SET_NODE, *PDDR_SET_NODE;
|
typedef DDR_SETTING DDR_SET_NODE, *PDDR_SET_NODE;
|
||||||
INT InitAdapter(PMINI_ADAPTER psAdapter);
|
INT InitAdapter(PMINI_ADAPTER psAdapter);
|
||||||
|
|
||||||
// =====================================================================
|
/* =====================================================================
|
||||||
// Beceem vendor request codes for EP0
|
* Beceem vendor request codes for EP0
|
||||||
// =====================================================================
|
* =====================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
#define BCM_REQUEST_READ 0x2
|
#define BCM_REQUEST_READ 0x2
|
||||||
#define BCM_REQUEST_WRITE 0x1
|
#define BCM_REQUEST_WRITE 0x1
|
||||||
|
@ -587,4 +592,4 @@ typedef enum eInterface_setting {
|
||||||
ALTERNATE_SETTING_1 = 1,
|
ALTERNATE_SETTING_1 = 1,
|
||||||
} INTERFACE_SETTING;
|
} INTERFACE_SETTING;
|
||||||
|
|
||||||
#endif //__ADAPTER_H__
|
#endif /* __ADAPTER_H__ */
|
||||||
|
|
Loading…
Add table
Reference in a new issue