mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-29 04:41:21 -04:00
staging: vt6656: struct vnt_private remove camel case retry limit
camel case changes byShortRetryLimit -> short_retry_limit byLongRetryLimit -> long_retry_limit 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
8b84c1da02
commit
388e5cb8dd
@@ -353,8 +353,8 @@ struct vnt_private {
|
||||
u16 tx_rate_fb0;
|
||||
u16 tx_rate_fb1;
|
||||
|
||||
u8 byShortRetryLimit;
|
||||
u8 byLongRetryLimit;
|
||||
u8 short_retry_limit;
|
||||
u8 long_retry_limit;
|
||||
|
||||
enum nl80211_iftype op_mode;
|
||||
|
||||
|
||||
@@ -118,8 +118,8 @@ static void device_set_options(struct vnt_private *priv)
|
||||
else
|
||||
priv->num_rcb = vnt_rx_buffers;
|
||||
|
||||
priv->byShortRetryLimit = SHORT_RETRY_DEF;
|
||||
priv->byLongRetryLimit = LONG_RETRY_DEF;
|
||||
priv->short_retry_limit = SHORT_RETRY_DEF;
|
||||
priv->long_retry_limit = LONG_RETRY_DEF;
|
||||
priv->op_mode = NL80211_IFTYPE_UNSPECIFIED;
|
||||
priv->bb_type = BBP_TYPE_DEF;
|
||||
priv->packet_type = priv->bb_type;
|
||||
@@ -166,8 +166,8 @@ static int device_init_registers(struct vnt_private *priv)
|
||||
init_cmd->exist_sw_net_addr = priv->exist_sw_net_addr;
|
||||
for (ii = 0; ii < 6; ii++)
|
||||
init_cmd->sw_net_addr[ii] = priv->current_net_addr[ii];
|
||||
init_cmd->short_retry_limit = priv->byShortRetryLimit;
|
||||
init_cmd->long_retry_limit = priv->byLongRetryLimit;
|
||||
init_cmd->short_retry_limit = priv->short_retry_limit;
|
||||
init_cmd->long_retry_limit = priv->long_retry_limit;
|
||||
|
||||
/* issue card_init command to device */
|
||||
status = vnt_control_out(priv,
|
||||
|
||||
Reference in New Issue
Block a user