[PATCH v2] rsi: fix comment syntax in file headers

2021-03-15 Thread Aditya Srivastava
comment format, i.e., "/*", to prevent kernel-doc from parsing it. Signed-off-by: Aditya Srivastava --- - Applies perfectly on next-20210312 Changes in v2: - Convert the patch series to a single patch as suggested by Lukas and Kalle drivers/net/wireless/rsi/rsi_boot_params.h | 2

[PATCH 08/10] rsi: rsi_debugfs: fix file header comment syntax

2021-03-14 Thread Aditya Srivastava
specifications (i.e., function, struct, etc). This causes unwelcomed warning from kernel-doc: "warning: wrong kernel-doc identifier on line: * Copyright (c) 2014 Redpine Signals Inc." Replace this comment syntax with general comment format, i.e. '/*' to prevent kernel-doc

[PATCH 10/10] rsi: rsi_usb: fix file header comment syntax

2021-03-14 Thread Aditya Srivastava
specifications (i.e., function, struct, etc). This causes unwelcomed warning from kernel-doc: "warning: Cannot understand * @section LICENSE on line 2 - I thought it was a doc line" Replace this comment syntax with general comment format, i.e. '/*' to prevent kernel-doc

[PATCH 09/10] rsi: rsi_sdio: fix file header comment syntax

2021-03-14 Thread Aditya Srivastava
specifications (i.e., function, struct, etc). This causes unwelcomed warning from kernel-doc: "warning: Cannot understand * @section LICENSE on line 2 - I thought it was a doc line" Replace this comment syntax with general comment format, i.e. '/*' to prevent kernel-doc

[PATCH 07/10] rsi: rsi_hal: fix file header comment syntax

2021-03-14 Thread Aditya Srivastava
specifications (i.e., function, struct, etc). This causes unwelcomed warning from kernel-doc: "warning: wrong kernel-doc identifier on line: * Copyright (c) 2017 Redpine Signals Inc." Replace this comment syntax with general comment format, i.e. '/*' to prevent kernel-doc

[PATCH 06/10] rsi: rsi_main: fix file header comment syntax

2021-03-14 Thread Aditya Srivastava
specifications (i.e., function, struct, etc). This causes unwelcomed warning from kernel-doc: "warning: wrong kernel-doc identifier on line: * Copyright (c) 2014 Redpine Signals Inc." Replace this comment syntax with general comment format, i.e. '/*' to prevent kernel-doc

[PATCH 05/10] rsi: rsi_mgmt: fix file header comment syntax

2021-03-14 Thread Aditya Srivastava
specifications (i.e., function, struct, etc). This causes unwelcomed warning from kernel-doc: "warning: wrong kernel-doc identifier on line: * Copyright (c) 2014 Redpine Signals Inc." Replace this comment syntax with general comment format, i.e. '/*' to prevent kernel-doc

[PATCH 04/10] rsi: rsi_common: fix file header comment syntax

2021-03-14 Thread Aditya Srivastava
specifications (i.e., function, struct, etc). This causes unwelcomed warning from kernel-doc: "warning: wrong kernel-doc identifier on line: * Copyright (c) 2014 Redpine Signals Inc." Replace this comment syntax with general comment format, i.e. '/*' to prevent kernel-doc

[PATCH 01/10] rsi: rsi_boot_params: fix file header comment syntax

2021-03-14 Thread Aditya Srivastava
el-doc from parsing these Signed-off-by: Aditya Srivastava --- drivers/net/wireless/rsi/rsi_boot_params.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/wireless/rsi/rsi_boot_params.h b/drivers/net/wireless/rsi/rsi_boot_params.h index c1cf19d1e376..30e03aa6a5

[PATCH 03/10] rsi: rsi_ps: fix file header comment syntax

2021-03-14 Thread Aditya Srivastava
specifications (i.e., function, struct, etc). This causes unwelcomed warning from kernel-doc: "warning: wrong kernel-doc identifier on line: * Copyright (c) 2017 Redpine Signals Inc." Replace this comment syntax with general comment format, i.e. '/*' to prevent kernel-doc

[PATCH 02/10] rsi: rsi_coex: fix file header comment syntax

2021-03-14 Thread Aditya Srivastava
specifications (i.e., function, struct, etc). This causes unwelcomed warning from kernel-doc: "warning: wrong kernel-doc identifier on line: * Copyright (c) 2018 Redpine Signals Inc." Replace this comment syntax with general comment format, i.e. '/*' to prevent kernel-doc

[PATCH 00/10] rsi: fix comment syntax in file headers

2021-03-14 Thread Aditya Srivastava
yntax with general format, i.e. "/*", to prevent kernel-doc from parsing it. * The patch series applies perfectly on next-20210312 Aditya Srivastava (10): rsi: rsi_boot_params: fix file header comment syntax rsi: rsi_coex: fix file header comment syntax rsi: rsi_ps: fix file header co

[PATCH 1/5] rtlwifi: rtl_pci: fix bool comparison in expressions

2021-01-10 Thread Aditya Srivastava
condition, rather than comparing with true/false E.g., in drivers/net/wireless/realtek/rtlwifi/ps.c, "if (find_p2p_ie == true)" can be replaced with "if (find_p2p_ie)" Replace all such expressions with the bool variables appropriately Signed-off-by: Aditya Srivastava ---

[PATCH 5/5] rtlwifi: rtl8821ae: fix bool comparison in expressions

2021-01-10 Thread Aditya Srivastava
propriately Signed-off-by: Aditya Srivastava --- drivers/net/wireless/realtek/rtlwifi/rtl8821ae/phy.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/phy.c b/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/phy.c index 372d6f8

[PATCH 0/5] rtlwifi: fix bool comparison in expressions

2021-01-10 Thread Aditya Srivastava
(mac->act_scanning)" Fix all such expressions with the bool variables appropriately for all the drivers in rtlwifi * The changes made are compile tested. * The patches apply perfectly on next-20210108 Aditya Srivastava (5): rtlwifi: rtl_pci: fix bool comparison in expressions rtlwifi:

[PATCH 3/5] rtlwifi: rtl8188ee: fix bool comparison in expressions

2021-01-10 Thread Aditya Srivastava
condition, rather than comparing with true/false E.g., in drivers/net/wireless/realtek/rtlwifi/rtl8188ee/dm.c, "if (mac->act_scanning == true)" can be replaced with "if (mac->act_scanning)" Replace all such expressions with the bool variables appropriately Signed

[PATCH 2/5] rtlwifi: rtl8192c-common: fix bool comparison in expressions

2021-01-10 Thread Aditya Srivastava
the condition, rather than comparing with true/false E.g., in drivers/net/wireless/realtek/rtlwifi/rtl8192c/dm_common.c, "else if (initialized == false) {" can be replaced with "else if (!initialized) {" Replace all such expressions with the bool variables appropriately S

[PATCH 4/5] rtlwifi: rtl8192se: fix bool comparison in expressions

2021-01-10 Thread Aditya Srivastava
condition, rather than comparing with true/false Replace all such expressions with the bool variables appropriately Signed-off-by: Aditya Srivastava --- drivers/net/wireless/realtek/rtlwifi/rtl8192se/hw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/wireless

[PATCH] drivers: net: wireless: rtlwifi: fix bool comparison in expressions

2021-01-08 Thread Aditya Srivastava
condition, rather than comparing with true/false E.g., in drivers/net/wireless/realtek/rtlwifi/ps.c, "if (find_p2p_ie == true)" can be replaced with "if (find_p2p_ie)" Replace all such expressions with the bool variables appropriately Signed-off-by: Aditya Srivastava --- -