Skip to content

Commit

Permalink
Staging: wlan-ng: fix 2 space coding style issues
Browse files Browse the repository at this point in the history
This patch to p80211conv.c fixes to space coding style warnings found
with checkpatch.pl

Signed-off-by: Adam Thompson <adam@lotpblog.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Adam Thompson authored and Greg Kroah-Hartman committed Jan 31, 2011
1 parent ae63983 commit e80528b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/wlan-ng/p80211conv.c
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ int skb_p80211_to_ether(wlandevice_t *wlandev, u32 ethconv,

} else if ((payload_length >= sizeof(struct wlan_llc) +
sizeof(struct wlan_snap))
&&(e_llc->dsap == 0xaa)
&& (e_llc->dsap == 0xaa)
&& (e_llc->ssap == 0xaa)
&& (e_llc->ctl == 0x03)
&&
Expand Down Expand Up @@ -415,7 +415,7 @@ int skb_p80211_to_ether(wlandevice_t *wlandev, u32 ethconv,

} else if ((payload_length >= sizeof(struct wlan_llc) +
sizeof(struct wlan_snap))
&&(e_llc->dsap == 0xaa)
&& (e_llc->dsap == 0xaa)
&& (e_llc->ssap == 0xaa)
&& (e_llc->ctl == 0x03)) {
pr_debug("802.1h/RFC1042 len: %d\n", payload_length);
Expand Down

0 comments on commit e80528b

Please sign in to comment.