Re: [PATCH 7/9] SERIAL: MIPS: lantiq: convert serial driver to clkdev api
From: Sergei Shtylyov <hidden>
Date: 2012-02-17 16:40:06
Also in:
linux-serial
From: Sergei Shtylyov <hidden>
Date: 2012-02-17 16:40:06
Also in:
linux-serial
Hello. On 02/17/2012 01:33 PM, John Crispin wrote:
Update from old pmu_{dis,en}able() to ckldev api.
The comment doesn't match the essence of patch.
Signed-off-by: John Crispin<redacted> Cc: linux-serial@vger.kernel.org --- This patch should go via MIPS with the rest of the series.
drivers/tty/serial/lantiq.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/tty/serial/lantiq.c b/drivers/tty/serial/lantiq.c index 96c1cac..136dae8 100644 --- a/drivers/tty/serial/lantiq.c +++ b/drivers/tty/serial/lantiq.c@@ -686,7 +686,7 @@ lqasc_probe(struct platform_device *pdev) if (lqasc_port[pdev->id] != NULL) return -EBUSY; - clk = clk_get(&pdev->dev, "fpi"); + clk = clk_get_sys("fpi", NULL);
Why not just clk_get(&pdev->dev, NULL)?
WBR, Sergei