Commit 28181d53 authored by John Whitmore's avatar John Whitmore Committed by Greg Kroah-Hartman

staging:rtl8192u: Add missing blank lines - Style

Add missing blank lines after declarations. This clears the resulting
checkpatch issue.

This is a simple coding style change which should not impact runtime
code execution.
Signed-off-by: default avatarJohn Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 98d48ef2
...@@ -204,6 +204,7 @@ void free_ieee80211(struct net_device *dev) ...@@ -204,6 +204,7 @@ void free_ieee80211(struct net_device *dev)
for (i = 0; i < WEP_KEYS; i++) { for (i = 0; i < WEP_KEYS; i++) {
struct ieee80211_crypt_data *crypt = ieee->crypt[i]; struct ieee80211_crypt_data *crypt = ieee->crypt[i];
if (crypt) { if (crypt) {
if (crypt->ops) if (crypt->ops)
crypt->ops->deinit(crypt->priv); crypt->ops->deinit(crypt->priv);
...@@ -253,6 +254,7 @@ static ssize_t write_debug_level(struct file *file, const char __user *buffer, ...@@ -253,6 +254,7 @@ static ssize_t write_debug_level(struct file *file, const char __user *buffer,
{ {
unsigned long val; unsigned long val;
int err = kstrtoul_from_user(buffer, count, 0, &val); int err = kstrtoul_from_user(buffer, count, 0, &val);
if (err) if (err)
return err; return err;
ieee80211_debug_level = val; ieee80211_debug_level = val;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment