[PATCH] staging: rtl8192e: insert blank line after function declaration

Vinicius Peixoto posted 1 patch 1 year, 5 months ago
drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c | 1 +
1 file changed, 1 insertion(+)
[PATCH] staging: rtl8192e: insert blank line after function declaration
Posted by Vinicius Peixoto 1 year, 5 months ago
This adds a blank line after the declaration of rtl92e_config_bb, in
order to fix the following checkpatch warning:

CHECK: Please use a blank line after function/struct/union/enum
declarations

Signed-off-by: Vinicius Peixoto <vpeixoto@lkcamp.dev>
---
 drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c b/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
index 18b948d4d86d..9f1bde65fc0d 100644
--- a/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
+++ b/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
@@ -416,6 +416,7 @@ static bool _rtl92e_bb_config_para_file(struct net_device *dev)
 
 	return rtStatus;
 }
+
 bool rtl92e_config_bb(struct net_device *dev)
 {
 	_rtl92e_init_bb_rf_reg_def(dev);
-- 
2.43.0
Re: [PATCH] staging: rtl8192e: insert blank line after function declaration
Posted by Dan Carpenter 1 year, 5 months ago
On Wed, Aug 21, 2024 at 05:46:45PM -0300, Vinicius Peixoto wrote:
> This adds a blank line after the declaration of rtl92e_config_bb, in
> order to fix the following checkpatch warning:
> 
> CHECK: Please use a blank line after function/struct/union/enum
> declarations
> 
> Signed-off-by: Vinicius Peixoto <vpeixoto@lkcamp.dev>

Thanks.

Reviewed-by: Dan Carpenter <dan.carpenter@linaro.org>

regards,
dan carpenter