* [PATCH v2] Staging: rtl8192u: Convert comments from C99 to C89 style
@ 2015-02-23 19:32 Ksenija Stanojevic
2015-02-23 19:59 ` [Outreachy kernel] " Jes Sorensen
0 siblings, 1 reply; 3+ messages in thread
From: Ksenija Stanojevic @ 2015-02-23 19:32 UTC (permalink / raw)
To: outreachy-kernel; +Cc: Ksenija Stanojevic
Kernel style for comments is C89 style. Issue found by checkpatch.pl.
Signed-off-by: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
---
v2: remove space before tab
drivers/staging/rtl8192u/ieee80211/rtl819x_TS.h | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/drivers/staging/rtl8192u/ieee80211/rtl819x_TS.h b/drivers/staging/rtl8192u/ieee80211/rtl819x_TS.h
index 7ed7243..44a9e3d 100644
--- a/drivers/staging/rtl8192u/ieee80211/rtl819x_TS.h
+++ b/drivers/staging/rtl8192u/ieee80211/rtl819x_TS.h
@@ -1,14 +1,14 @@
#ifndef _TSTYPE_H_
#define _TSTYPE_H_
#include "rtl819x_Qos.h"
-#define TS_SETUP_TIMEOUT 60 // In millisecond
+#define TS_SETUP_TIMEOUT 60 /* In millisecond */
#define TS_INACT_TIMEOUT 60
#define TS_ADDBA_DELAY 60
#define TOTAL_TS_NUM 16
#define TCLAS_NUM 4
-// This define the Tx/Rx directions
+/* This define the Tx/Rx directions */
typedef enum _TR_SELECT {
TX_DIR = 0,
RX_DIR = 1,
@@ -28,9 +28,9 @@ typedef struct _TS_COMMON_INFO{
typedef struct _TX_TS_RECORD{
TS_COMMON_INFO TsCommonInfo;
u16 TxCurSeq;
- BA_RECORD TxPendingBARecord; // For BA Originator
- BA_RECORD TxAdmittedBARecord; // For BA Originator
-// QOS_DL_RECORD DLRecord;
+ BA_RECORD TxPendingBARecord; /* For BA Originator */
+ BA_RECORD TxAdmittedBARecord; /* For BA Originator */
+/* QOS_DL_RECORD DLRecord; */
u8 bAddBaReqInProgress;
u8 bAddBaReqDelayed;
u8 bUsingBa;
@@ -44,11 +44,11 @@ typedef struct _RX_TS_RECORD {
u16 RxTimeoutIndicateSeq;
struct list_head RxPendingPktList;
struct timer_list RxPktPendingTimer;
- BA_RECORD RxAdmittedBARecord; // For BA Recipient
+ BA_RECORD RxAdmittedBARecord; /* For BA Recipient */
u16 RxLastSeqNum;
u8 RxLastFragNum;
u8 num;
-// QOS_DL_RECORD DLRecord;
+/* QOS_DL_RECORD DLRecord; */
} RX_TS_RECORD, *PRX_TS_RECORD;
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Outreachy kernel] [PATCH v2] Staging: rtl8192u: Convert comments from C99 to C89 style
2015-02-23 19:32 [PATCH v2] Staging: rtl8192u: Convert comments from C99 to C89 style Ksenija Stanojevic
@ 2015-02-23 19:59 ` Jes Sorensen
0 siblings, 0 replies; 3+ messages in thread
From: Jes Sorensen @ 2015-02-23 19:59 UTC (permalink / raw)
To: Ksenija Stanojevic, outreachy-kernel
On 02/23/15 14:32, Ksenija Stanojevic wrote:
> Kernel style for comments is C89 style. Issue found by checkpatch.pl.
>
> Signed-off-by: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
> ---
> v2: remove space before tab
>
> drivers/staging/rtl8192u/ieee80211/rtl819x_TS.h | 14 +++++++-------
> 1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/staging/rtl8192u/ieee80211/rtl819x_TS.h b/drivers/staging/rtl8192u/ieee80211/rtl819x_TS.h
> index 7ed7243..44a9e3d 100644
> --- a/drivers/staging/rtl8192u/ieee80211/rtl819x_TS.h
> +++ b/drivers/staging/rtl8192u/ieee80211/rtl819x_TS.h
> @@ -1,14 +1,14 @@
> #ifndef _TSTYPE_H_
> #define _TSTYPE_H_
> #include "rtl819x_Qos.h"
> -#define TS_SETUP_TIMEOUT 60 // In millisecond
> +#define TS_SETUP_TIMEOUT 60 /* In millisecond */
Please only one space after the /*
> #define TS_INACT_TIMEOUT 60
> #define TS_ADDBA_DELAY 60
>
> #define TOTAL_TS_NUM 16
> #define TCLAS_NUM 4
>
> -// This define the Tx/Rx directions
> +/* This define the Tx/Rx directions */
Same here
> typedef enum _TR_SELECT {
> TX_DIR = 0,
> RX_DIR = 1,
> @@ -28,9 +28,9 @@ typedef struct _TS_COMMON_INFO{
> typedef struct _TX_TS_RECORD{
> TS_COMMON_INFO TsCommonInfo;
> u16 TxCurSeq;
> - BA_RECORD TxPendingBARecord; // For BA Originator
> - BA_RECORD TxAdmittedBARecord; // For BA Originator
> -// QOS_DL_RECORD DLRecord;
> + BA_RECORD TxPendingBARecord; /* For BA Originator */
> + BA_RECORD TxAdmittedBARecord; /* For BA Originator */
> +/* QOS_DL_RECORD DLRecord; */
The last line is not a comment, but disabling a variable. In this case
you should remove the variable from the struct instead of changing the
comment style as it's dead code.
> u8 bAddBaReqInProgress;
> u8 bAddBaReqDelayed;
> u8 bUsingBa;
> @@ -44,11 +44,11 @@ typedef struct _RX_TS_RECORD {
> u16 RxTimeoutIndicateSeq;
> struct list_head RxPendingPktList;
> struct timer_list RxPktPendingTimer;
> - BA_RECORD RxAdmittedBARecord; // For BA Recipient
> + BA_RECORD RxAdmittedBARecord; /* For BA Recipient */
Again the issue with two spaces
> u16 RxLastSeqNum;
> u8 RxLastFragNum;
> u8 num;
> -// QOS_DL_RECORD DLRecord;
> +/* QOS_DL_RECORD DLRecord; */
And another case of dead code.
> } RX_TS_RECORD, *PRX_TS_RECORD;
>
>
>
Cheers,
Jes
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Outreachy kernel] [PATCH v2] Staging: rtl8192u: Convert comments from C99 to C89 style
2015-02-22 14:00 Ksenija Stanojevic
@ 2015-02-26 21:34 ` Greg KH
0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2015-02-26 21:34 UTC (permalink / raw)
To: Ksenija Stanojevic; +Cc: outreachy-kernel
On Sun, Feb 22, 2015 at 03:00:41PM +0100, Ksenija Stanojevic wrote:
> Kernel style for comments is C89 style. Issue found by checkpatch.pl.
>
> Signed-off-by: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
> ---
> v2: format comments to fit 80 characters.
>
> drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c | 282 ++++++++++++----------
> 1 file changed, 156 insertions(+), 126 deletions(-)
This patch adds new issues to the file (trailing whitespace). Please
fix up and resend.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-02-26 21:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-23 19:32 [PATCH v2] Staging: rtl8192u: Convert comments from C99 to C89 style Ksenija Stanojevic
2015-02-23 19:59 ` [Outreachy kernel] " Jes Sorensen
-- strict thread matches above, loose matches on Subject: below --
2015-02-22 14:00 Ksenija Stanojevic
2015-02-26 21:34 ` [Outreachy kernel] " Greg KH
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.