Linux-Amlogic Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 3/3] meson_uart: adds the core clock handling to the driver
@ 2017-03-22 20:46 Helmut Klein
  2017-03-23  7:50 ` Neil Armstrong
  0 siblings, 1 reply; 2+ messages in thread
From: Helmut Klein @ 2017-03-22 20:46 UTC (permalink / raw)
  To: linus-amlogic

the added lines are 1:1 ripped off amlogic's driver. They do what i want 
them to do.

I've hot no idea, if they are acceptable in that form.


diff -Napur a/drivers/tty/serial/meson_uart.c 
b/drivers/tty/serial/meson_uart.c
--- a/drivers/tty/serial/meson_uart.c	2017-03-09 21:09:47.000000000 +0100
+++ b/drivers/tty/serial/meson_uart.c	2017-03-22 19:01:38.581613578 +0100
@@ -600,6 +600,7 @@ static int meson_uart_probe(struct platf
  	struct resource *res_mem, *res_irq;
  	struct uart_port *port;
  	struct clk *clk;
+	struct clk *core_clk;
  	int ret = 0;

  	if (pdev->dev.of_node)
@@ -625,6 +626,15 @@ static int meson_uart_probe(struct platf
  	if (!port)
  		return -ENOMEM;

+	core_clk = devm_clk_get(&pdev->dev, "core");
+	if (!IS_ERR(core_clk)) {
+		ret = clk_prepare_enable(core_clk);
+		if(ret) {
+			dev_err(&pdev->dev, "couldn't enable clkc\n");
+			return ret;
+		}
+	}
+
  	clk = clk_get(&pdev->dev, NULL);
  	if (IS_ERR(clk))
  		return PTR_ERR(clk);

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH 3/3] meson_uart: adds the core clock handling to the driver
  2017-03-22 20:46 [PATCH 3/3] meson_uart: adds the core clock handling to the driver Helmut Klein
@ 2017-03-23  7:50 ` Neil Armstrong
  0 siblings, 0 replies; 2+ messages in thread
From: Neil Armstrong @ 2017-03-23  7:50 UTC (permalink / raw)
  To: linus-amlogic



Le 22/03/2017 21:46, Helmut Klein a ?crit :
> the added lines are 1:1 ripped off amlogic's driver. They do what i want them to do.
> 
> I've hot no idea, if they are acceptable in that form.
> 
> 
> diff -Napur a/drivers/tty/serial/meson_uart.c b/drivers/tty/serial/meson_uart.c
> --- a/drivers/tty/serial/meson_uart.c    2017-03-09 21:09:47.000000000 +0100
> +++ b/drivers/tty/serial/meson_uart.c    2017-03-22 19:01:38.581613578 +0100
> @@ -600,6 +600,7 @@ static int meson_uart_probe(struct platf
>      struct resource *res_mem, *res_irq;
>      struct uart_port *port;
>      struct clk *clk;
> +    struct clk *core_clk;
>      int ret = 0;
> 
>      if (pdev->dev.of_node)
> @@ -625,6 +626,15 @@ static int meson_uart_probe(struct platf
>      if (!port)
>          return -ENOMEM;
> 
> +    core_clk = devm_clk_get(&pdev->dev, "core");
> +    if (!IS_ERR(core_clk)) {
> +        ret = clk_prepare_enable(core_clk);
> +        if(ret) {
> +            dev_err(&pdev->dev, "couldn't enable clkc\n");
> +            return ret;
> +        }
> +    }

it's correct, but the another way to go is :
if (IS_ERR(core_clk))
	core_clk = NULL;

ret = clk_prepare_enable(core_clk);
if(ret) {
    dev_err(&pdev->dev, "couldn't enable clkc\n");
    return ret;
}

clk_prepare_enable will accept NULL clk.

> +
>      clk = clk_get(&pdev->dev, NULL);
>      if (IS_ERR(clk))
>          return PTR_ERR(clk);
> 

Please also Cc the tty/serial maintainer here also.

Neil

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-03-23  7:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-22 20:46 [PATCH 3/3] meson_uart: adds the core clock handling to the driver Helmut Klein
2017-03-23  7:50 ` Neil Armstrong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox