STAGING: rtl8192u/ieee80211: fix checkpatch error about pointer position in dot11d
authorXenia Ragiadakou <burzalodowa@gmail.com>
Sat, 11 May 2013 18:10:50 +0000 (21:10 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 13 May 2013 14:14:52 +0000 (07:14 -0700)
This patch fixes the pointer position in dot11d.h and dot11d.c
to meet the kernel coding style conventions.

Signed-off-by: Xenia Ragiadakou <burzalodowa@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192u/ieee80211/dot11d.c
drivers/staging/rtl8192u/ieee80211/dot11d.h

index f10fd5a..c6f377a 100644 (file)
@@ -67,9 +67,9 @@ Dot11d_Reset(struct ieee80211_device *ieee)
 void
 Dot11d_UpdateCountryIe(
        struct ieee80211_device *dev,
-       u8 *            pTaddr,
+       u8 *pTaddr,
        u16     CoutryIeLen,
-       u8 * pCoutryIe
+       u8 *pCoutryIe
        )
 {
        PRT_DOT11D_INFO pDot11dInfo = GET_DOT11D_INFO(dev);
@@ -101,7 +101,7 @@ Dot11d_UpdateCountryIe(
                        MaxChnlNum = pTriple->FirstChnl + j;
                }
 
-               pTriple = (PCHNL_TXPOWER_TRIPLE)((u8*)pTriple + 3);
+               pTriple = (PCHNL_TXPOWER_TRIPLE)((u8 *)pTriple + 3);
        }
        //printk("Dot11d_UpdateCountryIe(): Channel List:\n");
        printk("Channel List:");
@@ -143,7 +143,7 @@ DOT11D_GetMaxTxPwrInDbm(
 
 void
 DOT11D_ScanComplete(
-       struct ieee80211_device * dev
+       struct ieee80211_device *dev
        )
 {
        PRT_DOT11D_INFO pDot11dInfo = GET_DOT11D_INFO(dev);
@@ -166,7 +166,7 @@ DOT11D_ScanComplete(
 }
 
 int IsLegalChannel(
-       struct ieee80211_device * dev,
+       struct ieee80211_device *dev,
        u8 channel
 )
 {
@@ -183,7 +183,7 @@ int IsLegalChannel(
 }
 
 int ToLegalChannel(
-       struct ieee80211_device * dev,
+       struct ieee80211_device *dev,
        u8 channel
 )
 {
index 54f2b4c..6aa8c15 100644 (file)
@@ -71,9 +71,9 @@ Dot11d_Reset(
 void
 Dot11d_UpdateCountryIe(
        struct ieee80211_device *dev,
-       u8 *            pTaddr,
+       u8 *pTaddr,
        u16     CoutryIeLen,
-       u8 * pCoutryIe
+       u8 *pCoutryIe
        );
 
 u8
@@ -84,16 +84,16 @@ DOT11D_GetMaxTxPwrInDbm(
 
 void
 DOT11D_ScanComplete(
-       struct ieee80211_device * dev
+       struct ieee80211_device *dev
        );
 
 int IsLegalChannel(
-       struct ieee80211_device * dev,
+       struct ieee80211_device *dev,
        u8 channel
 );
 
 int ToLegalChannel(
-       struct ieee80211_device * dev,
+       struct ieee80211_device *dev,
        u8 channel
 );
 #endif // #ifndef __INC_DOT11D_H