Commit 98090a0b authored by Juliana Rodrigues's avatar Juliana Rodrigues Committed by Greg Kroah-Hartman

staging: wlan-ng: fixed alignment not matching

This patch fixes a checkpatch warning by moving
arguments to the right and aligning them to their open
parenthesis.
Signed-off-by: default avatarJuliana Rodrigues <juliana.orod@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 72d19e98
...@@ -334,7 +334,7 @@ static int prism2_scan(struct wiphy *wiphy, ...@@ -334,7 +334,7 @@ static int prism2_scan(struct wiphy *wiphy,
msg1.scantype.data = P80211ENUM_scantype_active; msg1.scantype.data = P80211ENUM_scantype_active;
msg1.ssid.data.len = request->ssids->ssid_len; msg1.ssid.data.len = request->ssids->ssid_len;
memcpy(msg1.ssid.data.data, memcpy(msg1.ssid.data.data,
request->ssids->ssid, request->ssids->ssid_len); request->ssids->ssid, request->ssids->ssid_len);
} else { } else {
msg1.scantype.data = 0; msg1.scantype.data = 0;
} }
......
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