|
@@ -67,7 +67,6 @@
|
|
|
#include "datarate.h"
|
|
|
#include "rf.h"
|
|
|
#include "firmware.h"
|
|
|
-#include "rndis.h"
|
|
|
#include "control.h"
|
|
|
#include "channel.h"
|
|
|
#include "int.h"
|
|
@@ -299,8 +298,8 @@ static void device_init_diversity_timer(struct vnt_private *pDevice)
|
|
|
static int device_init_registers(struct vnt_private *pDevice)
|
|
|
{
|
|
|
struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
|
|
|
- struct vnt_cmd_card_init init_cmd;
|
|
|
- struct vnt_rsp_card_init init_rsp;
|
|
|
+ struct vnt_cmd_card_init *init_cmd = &pDevice->init_command;
|
|
|
+ struct vnt_rsp_card_init *init_rsp = &pDevice->init_response;
|
|
|
u8 abyBroadcastAddr[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
|
|
|
u8 abySNAP_RFC1042[ETH_ALEN] = {0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00};
|
|
|
u8 abySNAP_Bridgetunnel[ETH_ALEN]
|
|
@@ -343,17 +342,17 @@ static int device_init_registers(struct vnt_private *pDevice)
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
- init_cmd.init_class = DEVICE_INIT_COLD;
|
|
|
- init_cmd.exist_sw_net_addr = (u8) pDevice->bExistSWNetAddr;
|
|
|
+ init_cmd->init_class = DEVICE_INIT_COLD;
|
|
|
+ init_cmd->exist_sw_net_addr = (u8) pDevice->bExistSWNetAddr;
|
|
|
for (ii = 0; ii < 6; ii++)
|
|
|
- init_cmd.sw_net_addr[ii] = pDevice->abyCurrentNetAddr[ii];
|
|
|
- init_cmd.short_retry_limit = pDevice->byShortRetryLimit;
|
|
|
- init_cmd.long_retry_limit = pDevice->byLongRetryLimit;
|
|
|
+ init_cmd->sw_net_addr[ii] = pDevice->abyCurrentNetAddr[ii];
|
|
|
+ init_cmd->short_retry_limit = pDevice->byShortRetryLimit;
|
|
|
+ init_cmd->long_retry_limit = pDevice->byLongRetryLimit;
|
|
|
|
|
|
/* issue card_init command to device */
|
|
|
ntStatus = CONTROLnsRequestOut(pDevice,
|
|
|
MESSAGE_TYPE_CARDINIT, 0, 0,
|
|
|
- sizeof(struct vnt_cmd_card_init), (u8 *)&init_cmd);
|
|
|
+ sizeof(struct vnt_cmd_card_init), (u8 *)init_cmd);
|
|
|
|
|
|
if ( ntStatus != STATUS_SUCCESS ) {
|
|
|
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO" Issue Card init fail \n");
|
|
@@ -362,7 +361,7 @@ static int device_init_registers(struct vnt_private *pDevice)
|
|
|
}
|
|
|
|
|
|
ntStatus = CONTROLnsRequestIn(pDevice, MESSAGE_TYPE_INIT_RSP, 0, 0,
|
|
|
- sizeof(struct vnt_rsp_card_init), (u8 *)&init_rsp);
|
|
|
+ sizeof(struct vnt_rsp_card_init), (u8 *)init_rsp);
|
|
|
if (ntStatus != STATUS_SUCCESS) {
|
|
|
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
|
|
|
"Cardinit request in status fail!\n");
|
|
@@ -519,7 +518,7 @@ static int device_init_registers(struct vnt_private *pDevice)
|
|
|
pDevice->byMaxChannel = CB_MAX_CHANNEL;
|
|
|
|
|
|
/* get RFType */
|
|
|
- pDevice->byRFType = init_rsp.rf_type;
|
|
|
+ pDevice->byRFType = init_rsp->rf_type;
|
|
|
|
|
|
if ((pDevice->byRFType & RF_EMU) != 0) {
|
|
|
/* force change RevID for VT3253 emu */
|
|
@@ -570,7 +569,7 @@ static int device_init_registers(struct vnt_private *pDevice)
|
|
|
CARDbSetMediaChannel(pDevice, pMgmt->uCurrChannel);
|
|
|
|
|
|
/* get permanent network address */
|
|
|
- memcpy(pDevice->abyPermanentNetAddr, &init_rsp.net_addr[0], 6);
|
|
|
+ memcpy(pDevice->abyPermanentNetAddr, init_rsp->net_addr, 6);
|
|
|
memcpy(pDevice->abyCurrentNetAddr,
|
|
|
pDevice->abyPermanentNetAddr,
|
|
|
ETH_ALEN);
|