lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Wed, 18 Mar 2020 13:14:30 +0200
From:   Abel Vesa <abel.vesa@....com>
To:     Anson Huang <Anson.Huang@....com>
Cc:     mturquette@...libre.com, sboyd@...nel.org, shawnguo@...nel.org,
        s.hauer@...gutronix.de, kernel@...gutronix.de, festevam@...il.com,
        t-kristo@...com, jonas.gorski@...il.com, linux-clk@...r.kernel.org,
        linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org,
        Linux-imx@....com
Subject: Re: [PATCH] clk: imx: clk-sscg-pll: Remove unnecessary blank lines

On 20-03-18 09:39:25, Anson Huang wrote:
> Remove many unnecessary blank lines for cleanup.
> 
> Signed-off-by: Anson Huang <Anson.Huang@....com>

Reviewed-by: Abel Vesa <abel.vesa@....com>

> ---
>  drivers/clk/imx/clk-sscg-pll.c | 10 ----------
>  1 file changed, 10 deletions(-)
> 
> diff --git a/drivers/clk/imx/clk-sscg-pll.c b/drivers/clk/imx/clk-sscg-pll.c
> index d4a2be1..773d8a5 100644
> --- a/drivers/clk/imx/clk-sscg-pll.c
> +++ b/drivers/clk/imx/clk-sscg-pll.c
> @@ -72,7 +72,6 @@ struct clk_sscg_pll_setup {
>  	int divr2, divf2;
>  	int divq;
>  	int bypass;
> -
>  	uint64_t vco1;
>  	uint64_t vco2;
>  	uint64_t fout;
> @@ -86,11 +85,8 @@ struct clk_sscg_pll_setup {
>  struct clk_sscg_pll {
>  	struct clk_hw	hw;
>  	const struct clk_ops  ops;
> -
>  	void __iomem *base;
> -
>  	struct clk_sscg_pll_setup setup;
> -
>  	u8 parent;
>  	u8 bypass1;
>  	u8 bypass2;
> @@ -194,7 +190,6 @@ static int clk_sscg_pll2_find_setup(struct clk_sscg_pll_setup *setup,
>  					struct clk_sscg_pll_setup *temp_setup,
>  					uint64_t ref)
>  {
> -
>  	int ret;
>  
>  	if (ref < PLL_STAGE1_MIN_FREQ || ref > PLL_STAGE1_MAX_FREQ)
> @@ -253,7 +248,6 @@ static int clk_sscg_pll1_find_setup(struct clk_sscg_pll_setup *setup,
>  					struct clk_sscg_pll_setup *temp_setup,
>  					uint64_t ref)
>  {
> -
>  	int ret;
>  
>  	if (ref < PLL_REF_MIN_FREQ || ref > PLL_REF_MAX_FREQ)
> @@ -280,7 +274,6 @@ static int clk_sscg_pll_find_setup(struct clk_sscg_pll_setup *setup,
>  	temp_setup.fout_request = rate;
>  
>  	switch (try_bypass) {
> -
>  	case PLL_BYPASS2:
>  		if (prate == rate) {
>  			setup->bypass = PLL_BYPASS2;
> @@ -288,11 +281,9 @@ static int clk_sscg_pll_find_setup(struct clk_sscg_pll_setup *setup,
>  			ret = 0;
>  		}
>  		break;
> -
>  	case PLL_BYPASS1:
>  		ret = clk_sscg_pll2_find_setup(setup, &temp_setup, prate);
>  		break;
> -
>  	case PLL_BYPASS_NONE:
>  		ret = clk_sscg_pll1_find_setup(setup, &temp_setup, prate);
>  		break;
> @@ -301,7 +292,6 @@ static int clk_sscg_pll_find_setup(struct clk_sscg_pll_setup *setup,
>  	return ret;
>  }
>  
> -
>  static int clk_sscg_pll_is_prepared(struct clk_hw *hw)
>  {
>  	struct clk_sscg_pll *pll = to_clk_sscg_pll(hw);
> -- 
> 2.7.4
> 

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ