]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging/rtl8187se: Fix spacing coding style in r8180_core.c
authorYAMANE Toshiaki <yamanetoshi@gmail.com>
Thu, 22 Nov 2012 00:06:50 +0000 (09:06 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 27 Nov 2012 00:01:30 +0000 (16:01 -0800)
The following errors fixed.
-ERROR: "foo * bar" should be "foo *bar"
-ERROR: "(foo*)" should be "(foo *)"

Signed-off-by: YAMANE Toshiaki <yamanetoshi@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8187se/r8180_core.c

index 4d103495dc0cf7c4779d4cde2185938a8049ec4a..e0414e509be63573e9ab6728991a6e42d62031dd 100644 (file)
@@ -1699,7 +1699,7 @@ void rtl8180_prepare_beacon(struct net_device *dev)
  * descriptor in the ring buffer, copyes the frame in a TX buffer
  * and kicks the NIC to ensure it does the DMA transfer.
  */
-short rtl8180_tx(struct net_device *dev, u8txbuf, int len, int priority,
+short rtl8180_tx(struct net_device *dev, u8 *txbuf, int len, int priority,
                 short morefrag, short descfrag, int rate)
 {
        struct r8180_priv *priv = ieee80211_priv(dev);
@@ -2211,7 +2211,7 @@ void rtl8180_watch_dog(struct net_device *dev);
 
 void watch_dog_adaptive(unsigned long data)
 {
-       struct r8180_privpriv = ieee80211_priv((struct net_device *)data);
+       struct r8180_priv *priv = ieee80211_priv((struct net_device *)data);
 
        if (!priv->up) {
                DMESG("<----watch_dog_adaptive():driver is not up!\n");
@@ -3463,7 +3463,7 @@ void rtl8180_tx_isr(struct net_device *dev, int pri, short error)
                return ;
        }
 
-       nicv = (u32 *)((nic - nicbegin) + (u8*)begin);
+       nicv = (u32 *)((nic - nicbegin) + (u8 *)begin);
        if ((head <= tail && (nicv > tail || nicv < head)) ||
                (head > tail && (nicv > tail && nicv < head))) {
                        DMESGW("nic has lost pointer");