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

staging: wlan-ng: fixed lines over 80 characters

Breaks lines over 80 characters that were causing checkpatch issues.
Signed-off-by: default avatarJuliana Rodrigues <juliana.orod@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c802be98
...@@ -104,7 +104,8 @@ static void prism2sta_reset(struct wlandevice *wlandev); ...@@ -104,7 +104,8 @@ static void prism2sta_reset(struct wlandevice *wlandev);
static int prism2sta_txframe(struct wlandevice *wlandev, struct sk_buff *skb, static int prism2sta_txframe(struct wlandevice *wlandev, struct sk_buff *skb,
union p80211_hdr *p80211_hdr, union p80211_hdr *p80211_hdr,
struct p80211_metawep *p80211_wep); struct p80211_metawep *p80211_wep);
static int prism2sta_mlmerequest(struct wlandevice *wlandev, struct p80211msg *msg); static int prism2sta_mlmerequest(struct wlandevice *wlandev,
struct p80211msg *msg);
static int prism2sta_getcardinfo(struct wlandevice *wlandev); static int prism2sta_getcardinfo(struct wlandevice *wlandev);
static int prism2sta_globalsetup(struct wlandevice *wlandev); static int prism2sta_globalsetup(struct wlandevice *wlandev);
static int prism2sta_setmulticast(struct wlandevice *wlandev, static int prism2sta_setmulticast(struct wlandevice *wlandev,
...@@ -278,7 +279,8 @@ static int prism2sta_txframe(struct wlandevice *wlandev, struct sk_buff *skb, ...@@ -278,7 +279,8 @@ static int prism2sta_txframe(struct wlandevice *wlandev, struct sk_buff *skb,
* Call context: * Call context:
* process thread * process thread
*/ */
static int prism2sta_mlmerequest(struct wlandevice *wlandev, struct p80211msg *msg) static int prism2sta_mlmerequest(struct wlandevice *wlandev,
struct p80211msg *msg)
{ {
struct hfa384x *hw = wlandev->priv; struct hfa384x *hw = wlandev->priv;
...@@ -1099,7 +1101,8 @@ static void prism2sta_inf_hostscanresults(struct wlandevice *wlandev, ...@@ -1099,7 +1101,8 @@ static void prism2sta_inf_hostscanresults(struct wlandevice *wlandev,
kfree(hw->scanresults); kfree(hw->scanresults);
hw->scanresults = kmemdup(inf, sizeof(struct hfa384x_InfFrame), GFP_ATOMIC); hw->scanresults = kmemdup(inf, sizeof(struct hfa384x_InfFrame),
GFP_ATOMIC);
if (nbss == 0) if (nbss == 0)
nbss = -1; nbss = -1;
......
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