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: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <09d6a69610ccec161ad8e0f2df64d8264c0a64fe.camel@crapouillou.net>
Date: Thu, 22 Aug 2024 11:40:46 +0200
From: Paul Cercueil <paul@...pouillou.net>
To: Lei Liu <liulei.rjpt@...o.com>, Greg Kroah-Hartman
 <gregkh@...uxfoundation.org>, Jiri Slaby <jirislaby@...nel.org>, Thierry
 Reding <thierry.reding@...il.com>, Jonathan Hunter <jonathanh@...dia.com>,
 Kunihiko Hayashi <hayashi.kunihiko@...ionext.com>, Masami Hiramatsu
 <mhiramat@...nel.org>, Richard Genoud <richard.genoud@...tlin.com>, Nicolas
 Ferre <nicolas.ferre@...rochip.com>,  Alexandre Belloni
 <alexandre.belloni@...tlin.com>, Claudiu Beznea <claudiu.beznea@...on.dev>,
 Liviu Dudau <liviu.dudau@....com>, Sudeep Holla <sudeep.holla@....com>,
 Lorenzo Pieralisi <lpieralisi@...nel.org>, Andreas
 Färber <afaerber@...e.de>,  Manivannan Sadhasivam
 <manivannan.sadhasivam@...aro.org>, Patrice Chotard
 <patrice.chotard@...s.st.com>, Maxime Coquelin <mcoquelin.stm32@...il.com>,
 Alexandre Torgue <alexandre.torgue@...s.st.com>,  Geert Uytterhoeven
 <geert+renesas@...der.be>, Andy Shevchenko
 <andriy.shevchenko@...ux.intel.com>, Florian Fainelli
 <florian.fainelli@...adcom.com>, Uwe Kleine-König
 <u.kleine-koenig@...gutronix.de>, Thomas Gleixner <tglx@...utronix.de>,
 John Ogness <john.ogness@...utronix.de>, Jeff Johnson
 <quic_jjohnson@...cinc.com>, Sebastian Andrzej Siewior
 <bigeasy@...utronix.de>, Valentin Caron <valentin.caron@...s.st.com>, Lino
 Sanfilippo <l.sanfilippo@...bus.com>, linux-mips@...r.kernel.org, 
 linux-kernel@...r.kernel.org, linux-serial@...r.kernel.org, 
 linux-tegra@...r.kernel.org, linux-arm-kernel@...ts.infradead.org, 
 linux-actions@...ts.infradead.org, linux-stm32@...md-mailman.stormreply.com
Cc: opensource.kernel@...o.com
Subject: Re: [PATCH 1/8] tty: 8250_ingenic: Use devm_clk_get_enabled()
 helpers

Hi Lei Liu,

Le jeudi 22 août 2024 à 11:39 +0800, Lei Liu a écrit :
> The devm_clk_get_enabled() helpers:
>     - call devm_clk_get()
>     - call clk_prepare_enable() and register what is needed in order
> to
>      call clk_disable_unprepare() when needed, as a managed resource.
> 
> This simplifies the code and avoids calls to clk_disable_unprepare().
> 
> Signed-off-by: Lei Liu <liulei.rjpt@...o.com>
> ---
>  drivers/tty/serial/8250/8250_ingenic.c | 26 +++---------------------
> --
>  1 file changed, 3 insertions(+), 23 deletions(-)
> 
> diff --git a/drivers/tty/serial/8250/8250_ingenic.c
> b/drivers/tty/serial/8250/8250_ingenic.c
> index a2783e38a2e3..5f8787309064 100644
> --- a/drivers/tty/serial/8250/8250_ingenic.c
> +++ b/drivers/tty/serial/8250/8250_ingenic.c
> @@ -274,44 +274,26 @@ static int ingenic_uart_probe(struct
> platform_device *pdev)
>  	if (!uart.port.membase)
>  		return -ENOMEM;
>  
> -	data->clk_module = devm_clk_get(&pdev->dev, "module");
> +	data->clk_module = devm_clk_get_enabled(&pdev->dev,
> "module");
>  	if (IS_ERR(data->clk_module))
>  		return dev_err_probe(&pdev->dev, PTR_ERR(data-
> >clk_module),
>  				     "unable to get module
> clock\n");
>  
> -	data->clk_baud = devm_clk_get(&pdev->dev, "baud");
> +	data->clk_baud = devm_clk_get_enabled(&pdev->dev, "baud");
>  	if (IS_ERR(data->clk_baud))
>  		return dev_err_probe(&pdev->dev, PTR_ERR(data-
> >clk_baud),
>  				     "unable to get baud clock\n");
>  
> -	err = clk_prepare_enable(data->clk_module);
> -	if (err) {
> -		dev_err(&pdev->dev, "could not enable module clock:
> %d\n", err);
> -		goto out;
> -	}
> -
> -	err = clk_prepare_enable(data->clk_baud);
> -	if (err) {
> -		dev_err(&pdev->dev, "could not enable baud clock:
> %d\n", err);
> -		goto out_disable_moduleclk;
> -	}
>  	uart.port.uartclk = clk_get_rate(data->clk_baud);
>  
>  	data->line = serial8250_register_8250_port(&uart);
>  	if (data->line < 0) {
>  		err = data->line;
> -		goto out_disable_baudclk;
> +		return err;

Not really worth a V2, but if you make a V2, please "return data-
>line;" directly.

Acked-by: Paul Cercueil <paul@...pouillou.net>

Cheers,
-Paul

>  	}
>  
>  	platform_set_drvdata(pdev, data);
>  	return 0;
> -
> -out_disable_baudclk:
> -	clk_disable_unprepare(data->clk_baud);
> -out_disable_moduleclk:
> -	clk_disable_unprepare(data->clk_module);
> -out:
> -	return err;
>  }
>  
>  static void ingenic_uart_remove(struct platform_device *pdev)
> @@ -319,8 +301,6 @@ static void ingenic_uart_remove(struct
> platform_device *pdev)
>  	struct ingenic_uart_data *data = platform_get_drvdata(pdev);
>  
>  	serial8250_unregister_port(data->line);
> -	clk_disable_unprepare(data->clk_module);
> -	clk_disable_unprepare(data->clk_baud);
>  }
>  
>  static const struct ingenic_uart_config jz4740_uart_config = {


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ