linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sean Gloumeau <sajgloumeau@gmail.com>
To: Forest Bond <forest@alittletooquiet.net>
Cc: Sean Gloumeau <sajgloumeau@gmail.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	"Gustavo A . R . Silva" <gustavoars@kernel.org>,
	linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org
Subject: [PATCH] staging: vt6655: key.c: Fix coding style issues
Date: Wed, 26 May 2021 10:03:09 -0400	[thread overview]
Message-ID: <20210526140309.23376-1-sajgloumeau@gmail.com> (raw)

The following changes were made to comply with the suggestions present
in Documentation/process/coding-style.rst as a requirement for Task 10
of the Eudyptula challenge.

Signed-off-by: Sean Gloumeau <sajgloumeau@gmail.com>
---
 drivers/staging/vt6655/key.c | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/drivers/staging/vt6655/key.c b/drivers/staging/vt6655/key.c
index 94665ddc36a5..d1470ff55e06 100644
--- a/drivers/staging/vt6655/key.c
+++ b/drivers/staging/vt6655/key.c
@@ -64,7 +64,7 @@ static int vnt_set_keymode(struct ieee80211_hw *hw, u8 *mac_addr,
 		key_mode |= (mode << 4);
 		key_mode |= VNT_KEY_GROUP;
 		break;
-	case  VNT_KEY_PAIRWISE:
+	case VNT_KEY_PAIRWISE:
 		key_mode |= mode;
 		key_inx = 4;
 		break;
@@ -82,8 +82,8 @@ static int vnt_set_keymode(struct ieee80211_hw *hw, u8 *mac_addr,
 			key->key[15] |= 0x80;
 	}
 
-	MACvSetKeyEntry(priv, key_mode, entry, key_inx,
-			bssid, (u32 *)key->key, priv->byLocalID);
+	MACvSetKeyEntry(priv, key_mode, entry, key_inx, bssid, (u32 *)key->key,
+			priv->byLocalID);
 
 	return 0;
 }
@@ -103,7 +103,7 @@ int vnt_set_keys(struct ieee80211_hw *hw, struct ieee80211_sta *sta,
 
 	switch (key->cipher) {
 	case 0:
-		for (u = 0 ; u < MAX_KEY_TABLE; u++)
+		for (u = 0; u < MAX_KEY_TABLE; u++)
 			MACvDisableKeyEntry(priv, u);
 		return ret;
 
@@ -112,8 +112,8 @@ int vnt_set_keys(struct ieee80211_hw *hw, struct ieee80211_sta *sta,
 		for (u = 0; u < MAX_KEY_TABLE; u++)
 			MACvDisableKeyEntry(priv, u);
 
-		vnt_set_keymode(hw, mac_addr,
-				key, VNT_KEY_DEFAULTKEY, KEY_CTL_WEP, true);
+		vnt_set_keymode(hw, mac_addr, key, VNT_KEY_DEFAULTKEY,
+				KEY_CTL_WEP, true);
 
 		key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
 
@@ -132,14 +132,14 @@ int vnt_set_keys(struct ieee80211_hw *hw, struct ieee80211_sta *sta,
 	}
 
 	if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE) {
-		vnt_set_keymode(hw, mac_addr,
-				key, VNT_KEY_PAIRWISE, key_dec_mode, true);
+		vnt_set_keymode(hw, mac_addr, key, VNT_KEY_PAIRWISE,
+				key_dec_mode, true);
 	} else {
-		vnt_set_keymode(hw, mac_addr,
-				key, VNT_KEY_DEFAULTKEY, key_dec_mode, true);
+		vnt_set_keymode(hw, mac_addr, key, VNT_KEY_DEFAULTKEY,
+				key_dec_mode, true);
 
-		vnt_set_keymode(hw, (u8 *)conf->bssid,
-				key, VNT_KEY_GROUP_ADDRESS, key_dec_mode, true);
+		vnt_set_keymode(hw, (u8 *)conf->bssid, key,
+				VNT_KEY_GROUP_ADDRESS, key_dec_mode, true);
 	}
 
 	return 0;
-- 
2.31.1


             reply	other threads:[~2021-05-26 14:04 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-26 14:03 Sean Gloumeau [this message]
2021-05-27 11:00 ` [PATCH] staging: vt6655: key.c: Fix coding style issues Greg Kroah-Hartman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210526140309.23376-1-sajgloumeau@gmail.com \
    --to=sajgloumeau@gmail.com \
    --cc=forest@alittletooquiet.net \
    --cc=gregkh@linuxfoundation.org \
    --cc=gustavoars@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-staging@lists.linux.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).