Skip to content

Commit

Permalink
staging: rtl8187se: Delete space prohibited between function name and…
Browse files Browse the repository at this point in the history
… open parenthesis

Delete space prohibited between function name and open parenthesis and
fix coding style in the lines changed when It is necessary

Fix checkpatch.pl warning message:
WARNING: space prohibited between function name and open parenthesis '('.

Signed-off-by: Ana Rey <anarey@gmail.com>
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
  • Loading branch information
Ana Rey authored and Peter P Waskiewicz Jr committed Mar 17, 2014
1 parent e1aff4e commit 8c98b99
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c
Original file line number Diff line number Diff line change
Expand Up @@ -683,9 +683,9 @@ static struct sk_buff *ieee80211_probe_resp(struct ieee80211_device *ieee,

beacon_buf = (struct ieee80211_probe_response*) skb_put(skb, beacon_size);

memcpy (beacon_buf->header.addr1, dest,ETH_ALEN);
memcpy (beacon_buf->header.addr2, ieee->dev->dev_addr, ETH_ALEN);
memcpy (beacon_buf->header.addr3, ieee->current_network.bssid, ETH_ALEN);
memcpy(beacon_buf->header.addr1, dest,ETH_ALEN);
memcpy(beacon_buf->header.addr2, ieee->dev->dev_addr, ETH_ALEN);
memcpy(beacon_buf->header.addr3, ieee->current_network.bssid, ETH_ALEN);

beacon_buf->header.duration_id = 0; /* FIXME */
beacon_buf->beacon_interval =
Expand Down Expand Up @@ -1308,14 +1308,14 @@ static short probe_rq_parse(struct ieee80211_device *ieee, struct sk_buff *skb,
struct ieee80211_hdr_3addr *header =
(struct ieee80211_hdr_3addr *) skb->data;

if (skb->len < sizeof (struct ieee80211_hdr_3addr ))
if (skb->len < sizeof(struct ieee80211_hdr_3addr))
return -1; /* corrupted */

memcpy(src,header->addr2, ETH_ALEN);

skbend = (u8*)skb->data + skb->len;

tag = skb->data + sizeof (struct ieee80211_hdr_3addr );
tag = skb->data + sizeof(struct ieee80211_hdr_3addr);

while (tag+1 < skbend) {
if (*tag == 0) {
Expand Down

0 comments on commit 8c98b99

Please sign in to comment.