staging: vt6656: device_set_options remove camel case
Camel case changes pDevice -> priv Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
28e067f4ff
commit
da3b67b343
1 changed files with 11 additions and 11 deletions
|
|
@ -203,18 +203,18 @@ static bool device_alloc_bufs(struct vnt_private *pDevice);
|
|||
|
||||
static void usb_device_reset(struct vnt_private *pDevice);
|
||||
|
||||
static void device_set_options(struct vnt_private *pDevice)
|
||||
static void device_set_options(struct vnt_private *priv)
|
||||
{
|
||||
pDevice->cbTD = TX_DESC_DEF0;
|
||||
pDevice->cbRD = RX_DESC_DEF0;
|
||||
pDevice->byShortRetryLimit = SHORT_RETRY_DEF;
|
||||
pDevice->byLongRetryLimit = LONG_RETRY_DEF;
|
||||
pDevice->op_mode = NL80211_IFTYPE_UNSPECIFIED;
|
||||
pDevice->byBBType = BBP_TYPE_DEF;
|
||||
pDevice->byPacketType = pDevice->byBBType;
|
||||
pDevice->byAutoFBCtrl = AUTO_FB_0;
|
||||
pDevice->byPreambleType = 0;
|
||||
pDevice->bExistSWNetAddr = false;
|
||||
priv->cbTD = TX_DESC_DEF0;
|
||||
priv->cbRD = RX_DESC_DEF0;
|
||||
priv->byShortRetryLimit = SHORT_RETRY_DEF;
|
||||
priv->byLongRetryLimit = LONG_RETRY_DEF;
|
||||
priv->op_mode = NL80211_IFTYPE_UNSPECIFIED;
|
||||
priv->byBBType = BBP_TYPE_DEF;
|
||||
priv->byPacketType = priv->byBBType;
|
||||
priv->byAutoFBCtrl = AUTO_FB_0;
|
||||
priv->byPreambleType = 0;
|
||||
priv->bExistSWNetAddr = false;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue