Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Staging: rtl8192u: Convert comments from C99 to C89 style

Kernel style for comments is C89 style. Issue found by checkpatch.pl.

Signed-off-by: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Ksenija Stanojevic and committed by
Greg Kroah-Hartman
ff757c8a a064d27a

+7 -7
+7 -7
drivers/staging/rtl8192u/ieee80211/rtl819x_TS.h
··· 1 1 #ifndef _TSTYPE_H_ 2 2 #define _TSTYPE_H_ 3 3 #include "rtl819x_Qos.h" 4 - #define TS_SETUP_TIMEOUT 60 // In millisecond 4 + #define TS_SETUP_TIMEOUT 60 /* In millisecond */ 5 5 #define TS_INACT_TIMEOUT 60 6 6 #define TS_ADDBA_DELAY 60 7 7 8 8 #define TOTAL_TS_NUM 16 9 9 #define TCLAS_NUM 4 10 10 11 - // This define the Tx/Rx directions 11 + /* This define the Tx/Rx directions */ 12 12 typedef enum _TR_SELECT { 13 13 TX_DIR = 0, 14 14 RX_DIR = 1, ··· 28 28 typedef struct _TX_TS_RECORD{ 29 29 TS_COMMON_INFO TsCommonInfo; 30 30 u16 TxCurSeq; 31 - BA_RECORD TxPendingBARecord; // For BA Originator 32 - BA_RECORD TxAdmittedBARecord; // For BA Originator 33 - // QOS_DL_RECORD DLRecord; 31 + BA_RECORD TxPendingBARecord; /* For BA Originator */ 32 + BA_RECORD TxAdmittedBARecord; /* For BA Originator */ 33 + /* QOS_DL_RECORD DLRecord; */ 34 34 u8 bAddBaReqInProgress; 35 35 u8 bAddBaReqDelayed; 36 36 u8 bUsingBa; ··· 44 44 u16 RxTimeoutIndicateSeq; 45 45 struct list_head RxPendingPktList; 46 46 struct timer_list RxPktPendingTimer; 47 - BA_RECORD RxAdmittedBARecord; // For BA Recipient 47 + BA_RECORD RxAdmittedBARecord; /* For BA Recipient */ 48 48 u16 RxLastSeqNum; 49 49 u8 RxLastFragNum; 50 50 u8 num; 51 - // QOS_DL_RECORD DLRecord; 51 + /* QOS_DL_RECORD DLRecord; */ 52 52 } RX_TS_RECORD, *PRX_TS_RECORD; 53 53 54 54