From 45ce3f6fb3d4d21a87f8b3f4668fd34a951274f0 Mon Sep 17 00:00:00 2001 From: Ken O'Brien Date: Sun, 5 Jun 2011 18:24:33 +0100 Subject: [PATCH] Staging: rtl8192e: Fixed numerous coding style issues Fixed all coding style issues thrown by checkpatch.pl. Signed-off-by: Ken O'Brien Signed-off-by: Greg Kroah-Hartman --- drivers/staging/rtl8192e/dot11d.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/staging/rtl8192e/dot11d.h b/drivers/staging/rtl8192e/dot11d.h index 3785fdf7f92..8e644614f21 100644 --- a/drivers/staging/rtl8192e/dot11d.h +++ b/drivers/staging/rtl8192e/dot11d.h @@ -4,17 +4,17 @@ #ifdef ENABLE_DOT11D #include "ieee80211.h" -typedef struct _CHNL_TXPOWER_TRIPLE { +struct _CHNL_TXPOWER_TRIPLE { u8 FirstChnl; u8 NumChnls; u8 MaxTxPowerInDbm; -} CHNL_TXPOWER_TRIPLE, *PCHNL_TXPOWER_TRIPLE; +}; -typedef enum _DOT11D_STATE { +enum _DOT11D_STATE { DOT11D_STATE_NONE = 0, DOT11D_STATE_LEARNED, DOT11D_STATE_DONE, -} DOT11D_STATE; +}; /** * struct _RT_DOT11D_INFO @@ -27,7 +27,7 @@ typedef enum _DOT11D_STATE { * @CountryIeSrcAddr - Source AP of the country IE */ -typedef struct _RT_DOT11D_INFO { +struct _RT_DOT11D_INFO { bool bEnabled; u16 CountryIeLen; @@ -39,7 +39,7 @@ typedef struct _RT_DOT11D_INFO { u8 MaxTxPwrDbmList[MAX_CHANNEL_NUMBER+1]; DOT11D_STATE State; -} RT_DOT11D_INFO, *PRT_DOT11D_INFO; +}; static inline void cpMacAddr(unsigned char *des, unsigned char *src) { -- 2.11.4.GIT