]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
staging: rtl8192e: Make rtl8192_tx static
authorMike McCormack <mikem@ring3k.org>
Thu, 10 Feb 2011 23:44:29 +0000 (08:44 +0900)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 18 Feb 2011 20:35:33 +0000 (12:35 -0800)
Signed-off-by: Mike McCormack <mikem@ring3k.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/rtl8192e/r8192E.h
drivers/staging/rtl8192e/r8192E_core.c

index 92ecfc24b74dc07fcd59dd9cf8df3f6ba0ee3d3f..f25e97542660894e73f04e2cbe33eb3c2109f3d1 100644 (file)
@@ -1039,7 +1039,6 @@ typedef struct r8192_priv
 }r8192_priv;
 
 bool init_firmware(struct net_device *dev);
-short rtl8192_tx(struct net_device *dev, struct sk_buff* skb);
 u32 read_cam(struct r8192_priv *priv, u8 addr);
 void write_cam(struct r8192_priv *priv, u8 addr, u32 data);
 u8 read_nic_byte(struct r8192_priv *priv, int x);
index 39f8ca8373d2b4654366df45e61512c9a6c86fa8..1b0cd9eac5d3afc89169cbe53da079f5a5374217 100644 (file)
@@ -109,6 +109,7 @@ static void rtl8192_restart(struct work_struct *work);
 static void watch_dog_timer_callback(unsigned long data);
 static int _rtl8192_up(struct net_device *dev);
 static void rtl8192_cancel_deferred_work(struct r8192_priv* priv);
+static short rtl8192_tx(struct net_device *dev, struct sk_buff* skb);
 
 #ifdef ENABLE_DOT11D
 
@@ -1255,7 +1256,7 @@ static u8 QueryIsShort(u8 TxHT, u8 TxRate, cb_desc *tcb_desc)
  * skb->cb will contain all the following information,
  * priority, morefrag, rate, &dev.
  */
-short rtl8192_tx(struct net_device *dev, struct sk_buff* skb)
+static short rtl8192_tx(struct net_device *dev, struct sk_buff* skb)
 {
        struct r8192_priv *priv = ieee80211_priv(dev);
        struct rtl8192_tx_ring *ring;