Commit f1945a15 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman
Browse files

staging: vt6656: struct vnt_private rename byLocalID to local_id



Removing camel case

Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8a73f9da
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -300,7 +300,7 @@ struct vnt_private {

	/* Version control */
	u16 firmware_version;
	u8 byLocalID;
	u8 local_id;
	u8 byRFType;
	u8 byBBRxConf;

+1 −1
Original line number Diff line number Diff line
@@ -175,7 +175,7 @@ int vnt_rx_data(struct vnt_private *priv, struct vnt_rcb *ptr_rcb,
	rx_status.rate_idx = rate_idx;

	if (ieee80211_has_protected(fc)) {
		if (priv->byLocalID > REV_ID_VT3253_A1) {
		if (priv->local_id > REV_ID_VT3253_A1) {
			rx_status.flag |= RX_FLAG_DECRYPTED;

			/* Drop packet */
+1 −1
Original line number Diff line number Diff line
@@ -158,7 +158,7 @@ int vnt_set_keys(struct ieee80211_hw *hw, struct ieee80211_sta *sta,

		break;
	case WLAN_CIPHER_SUITE_CCMP:
		if (priv->byLocalID <= MAC_REVISION_A1)
		if (priv->local_id <= MAC_REVISION_A1)
			return -EINVAL;

		key_dec_mode = KEY_CTL_CCMP;
+1 −1
Original line number Diff line number Diff line
@@ -189,7 +189,7 @@ static int device_init_registers(struct vnt_private *priv)
	/* local ID for AES functions */
	status = vnt_control_in(priv, MESSAGE_TYPE_READ,
		MAC_REG_LOCALID, MESSAGE_REQUEST_MACREG, 1,
			&priv->byLocalID);
			&priv->local_id);
	if (status != STATUS_SUCCESS)
		return false;