Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: rtl8187se: (foo*) should be (foo *)

Fix checkpatch error:

ERROR: "(foo*)" should be "(foo *)"

Signed-off-by: Teodora Baluta <teobaluta@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Teodora Baluta and committed by
Greg Kroah-Hartman
d27a71a2 41f7ba7a

+3 -3
+3 -3
drivers/staging/rtl8187se/ieee80211/ieee80211_tx.c
··· 245 245 struct ieee80211_txb *txb; 246 246 int i; 247 247 txb = kmalloc( 248 - sizeof(struct ieee80211_txb) + (sizeof(u8*) * nr_frags), 248 + sizeof(struct ieee80211_txb) + (sizeof(u8 *) * nr_frags), 249 249 gfp_mask); 250 250 if (!txb) 251 251 return NULL; ··· 275 275 static int 276 276 ieee80211_classify(struct sk_buff *skb, struct ieee80211_network *network) 277 277 { 278 - struct ether_header *eh = (struct ether_header*)skb->data; 278 + struct ether_header *eh = (struct ether_header *)skb->data; 279 279 unsigned int wme_UP = 0; 280 280 281 281 if(!network->QoS_Enable) { ··· 284 284 } 285 285 286 286 if(eh->ether_type == __constant_htons(ETHERTYPE_IP)) { 287 - const struct iphdr *ih = (struct iphdr*)(skb->data + \ 287 + const struct iphdr *ih = (struct iphdr *)(skb->data + \ 288 288 sizeof(struct ether_header)); 289 289 wme_UP = (ih->tos >> 5)&0x07; 290 290 } else if (vlan_tx_tag_present(skb)) {//vtag packet