Commit 14de7448 authored by YAMANE Toshiaki's avatar YAMANE Toshiaki Committed by Greg Kroah-Hartman

staging/rtl8187se: Fix spacing coding style in ieee80211/dot11d.c

The following errors fixed.
- ERROR: "foo * bar" should be "foo *bar"
- ERROR: "(foo*)" should be "(foo *)"
Signed-off-by: default avatarYAMANE Toshiaki <yamanetoshi@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent acf75376
...@@ -67,9 +67,9 @@ Dot11d_Reset(struct ieee80211_device *ieee) ...@@ -67,9 +67,9 @@ Dot11d_Reset(struct ieee80211_device *ieee)
void void
Dot11d_UpdateCountryIe( Dot11d_UpdateCountryIe(
struct ieee80211_device *dev, struct ieee80211_device *dev,
u8 * pTaddr, u8 *pTaddr,
u16 CoutryIeLen, u16 CoutryIeLen,
u8 * pCoutryIe u8 *pCoutryIe
) )
{ {
PRT_DOT11D_INFO pDot11dInfo = GET_DOT11D_INFO(dev); PRT_DOT11D_INFO pDot11dInfo = GET_DOT11D_INFO(dev);
...@@ -107,7 +107,7 @@ Dot11d_UpdateCountryIe( ...@@ -107,7 +107,7 @@ Dot11d_UpdateCountryIe(
MaxChnlNum = pTriple->FirstChnl + j; MaxChnlNum = pTriple->FirstChnl + j;
} }
pTriple = (PCHNL_TXPOWER_TRIPLE)((u8*)pTriple + 3); pTriple = (PCHNL_TXPOWER_TRIPLE)((u8 *)pTriple + 3);
} }
#if 1 #if 1
//printk("Dot11d_UpdateCountryIe(): Channel List:\n"); //printk("Dot11d_UpdateCountryIe(): Channel List:\n");
...@@ -148,7 +148,7 @@ DOT11D_GetMaxTxPwrInDbm( ...@@ -148,7 +148,7 @@ DOT11D_GetMaxTxPwrInDbm(
void void
DOT11D_ScanComplete( DOT11D_ScanComplete(
struct ieee80211_device * dev struct ieee80211_device *dev
) )
{ {
PRT_DOT11D_INFO pDot11dInfo = GET_DOT11D_INFO(dev); PRT_DOT11D_INFO pDot11dInfo = GET_DOT11D_INFO(dev);
...@@ -170,7 +170,7 @@ DOT11D_ScanComplete( ...@@ -170,7 +170,7 @@ DOT11D_ScanComplete(
} }
int IsLegalChannel( int IsLegalChannel(
struct ieee80211_device * dev, struct ieee80211_device *dev,
u8 channel u8 channel
) )
{ {
...@@ -186,7 +186,7 @@ int IsLegalChannel( ...@@ -186,7 +186,7 @@ int IsLegalChannel(
} }
int ToLegalChannel( int ToLegalChannel(
struct ieee80211_device * dev, struct ieee80211_device *dev,
u8 channel u8 channel
) )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment