Skip to content

Commit

Permalink
staging: rtl8187se: checkpatch cleanups
Browse files Browse the repository at this point in the history
Fix the following checkpatch.pl errors:

drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c:890: "foo* bar" should be "foo *bar"
drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c:944: "foo* bar" should be "foo *bar"

Signed-off-by: Teodora Baluta <teobaluta@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Teodora Baluta authored and Greg Kroah-Hartman committed Oct 19, 2013
1 parent 17ab33e commit 2072875
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,7 @@ static struct sk_buff* ieee80211_probe_resp(struct ieee80211_device *ieee, u8 *d
return skb;
}

static struct sk_buff* ieee80211_assoc_resp(struct ieee80211_device *ieee,
static struct sk_buff *ieee80211_assoc_resp(struct ieee80211_device *ieee,
u8 *dest)
{
struct sk_buff *skb;
Expand Down Expand Up @@ -941,7 +941,7 @@ static struct sk_buff* ieee80211_assoc_resp(struct ieee80211_device *ieee,
return skb;
}

static struct sk_buff* ieee80211_auth_resp(struct ieee80211_device *ieee,
static struct sk_buff *ieee80211_auth_resp(struct ieee80211_device *ieee,
int status, u8 *dest)
{
struct sk_buff *skb;
Expand Down

0 comments on commit 2072875

Please sign in to comment.