diff options
author | Vinicius Peixoto <[email protected]> | 2024-08-21 17:46:45 -0300 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2024-08-22 15:47:19 +0800 |
commit | f64a887f8f695fa0e955ea7aaff5c75d8a65a4d9 (patch) | |
tree | 06a6c7d6928b765744856d8f5b11912120526eb0 | |
parent | 8da9f6afc47e4ebfb044ae2fb05ba7dae78ba0e8 (diff) |
staging: rtl8192e: insert blank line after function declaration
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 <[email protected]>
Reviewed-by: Dan Carpenter <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c b/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c index 0e8ca8bef00d..3f55b59b9b49 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); |