Changeset 3365

Show
Ignore:
Timestamp:
02/25/08 16:51:38 (8 months ago)
Author:
mentor
Message:

Arbitrary whitespace cleanups

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • madwifi/trunk/net80211/ieee80211_input.c

    r3334 r3365  
    245245                goto out; 
    246246        } 
     247 
    247248        /* Clone the SKB... we assume somewhere in this driver that we 'own' 
    248249         * the skbuff passed into hard start and we do a lot of messing with it 
     
    250251         * to a bridge port, but will then clone for subsequent ones.  This is  
    251252         * odd behavior but it means that if we have trashed the skb we are given 
    252          * then other ports get clones of the residual garbage. 
    253          */ 
     253         * then other ports get clones of the residual garbage. */ 
    254254        if ((skb2 = skb_copy(skb, GFP_ATOMIC)) == NULL) { 
    255255                vap->iv_devstats.tx_dropped++; 
  • madwifi/trunk/net80211/ieee80211_output.c

    r3334 r3365  
    325325        if (dev_queue_xmit(skb) == NET_XMIT_DROP) 
    326326                vap->iv_devstats.tx_dropped++; 
    327  
    328327} 
    329328 
  • madwifi/trunk/net80211/ieee80211_skb.h

    r3167 r3365  
    114114#ifdef IEEE80211_DEBUG_REFCNT 
    115115 
    116 int vlan_hwaccel_receive_skb_debug(struct sk_buff *skb,  
    117                                    struct vlan_group *grp, unsigned short vlan_tag,  
    118                                    const char* func, int line); 
     116int vlan_hwaccel_receive_skb_debug(struct sk_buff *skb,  
     117                                   struct vlan_group *grp, unsigned short vlan_tag,  
     118                                   const char* func, int line); 
    119119int netif_rx_debug(struct sk_buff *skb, const char* func, int line); 
    120120struct sk_buff * alloc_skb_debug(unsigned int length, gfp_t gfp_mask, 
     
    138138void  kfree_skb_fast_debug(struct sk_buff *skb,  
    139139                           const char* func, int line); 
    140 struct sk_buff * skb_unshare_debug(struct sk_buff *skb, gfp_t pri, 
    141                                     const char *func, int line); 
     140struct sk_buff * skb_unshare_debug(struct sk_buff *skb, gfp_t pri, 
     141                                   const char *func, int line); 
    142142struct sk_buff * skb_copy_expand_debug(const struct sk_buff *skb, int newheadroom,  
    143143                                       int newtailroom, gfp_t gfp_mask,