[PATCH] staging: rtl8192e: the alignment now matches the open parenthesis

Wallysson Oliveira posted 1 patch 1 year, 5 months ago
drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] staging: rtl8192e: the alignment now matches the open parenthesis
Posted by Wallysson Oliveira 1 year, 5 months ago
The line 994 in the file drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
was not alingned with the open parenthesis.

Signed-off-by: Wallysson Oliveira <wallyssonryu@gmail.com>
---
 drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c b/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
index 18b948d4d86d..c7ee71c60a84 100644
--- a/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
+++ b/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
@@ -956,7 +956,7 @@ void rtl92e_init_gain(struct net_device *dev, u8 Operation)
 					 (u32)priv->initgain_backup.cca);
 
 			rtl92e_set_tx_power(dev,
-					 priv->rtllib->current_network.channel);
+					    priv->rtllib->current_network.channel);
 			break;
 		}
 	}
-- 
2.46.0
Re: [PATCH] staging: rtl8192e: the alignment now matches the open parenthesis
Posted by Gabriela Bittencourt 1 year, 5 months ago
Hi Wallysson,

On 8/21/24 9:29 PM, Wallysson Oliveira wrote:
> The line 994 in the file drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
> was not alingned with the open parenthesis.
> 
> Signed-off-by: Wallysson Oliveira <wallyssonryu@gmail.com>

There's a small typo in your commit message, in "aligned".

> ---
>   drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c b/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
> index 18b948d4d86d..c7ee71c60a84 100644
> --- a/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
> +++ b/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
> @@ -956,7 +956,7 @@ void rtl92e_init_gain(struct net_device *dev, u8 Operation)
>   					 (u32)priv->initgain_backup.cca);
>   
>   			rtl92e_set_tx_power(dev,
> -					 priv->rtllib->current_network.channel);
> +					    priv->rtllib->current_network.channel);
>   			break;
>   		}
>   	}

Thanks. :)