mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-29 08:12:41 -04:00
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:
committed by
Greg Kroah-Hartman
parent
28e067f4ff
commit
da3b67b343
@@ -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;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user