STAGING: rtl8192u/ieee80211: fix checkpatch error about pointer position in dot11d

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>
This commit is contained in:
Xenia Ragiadakou 2013-05-11 21:10:50 +03:00 committed by Greg Kroah-Hartman
parent bdedc7504e
commit 5d279df167
2 changed files with 11 additions and 11 deletions

View 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
)
{

View 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