Re: [PATCH] mtd: nand: denali_dt: replace clk_disable() with clk_disable_unprepare()

2016-11-06 Thread Boris Brezillon
On Thu, 3 Nov 2016 02:21:04 +0900 Masahiro Yamada wrote: > The denali_dt_probe() calls clk_disable_unprepare() in the bailout > path, whereas denali_dt_remove calls clk_disable(), inconsistently. > Replace the latter with clk_disable_unprepare() to make sure to >

Re: [PATCH] mtd: nand: denali_dt: replace clk_disable() with clk_disable_unprepare()

2016-11-06 Thread Boris Brezillon
On Thu, 3 Nov 2016 02:21:04 +0900 Masahiro Yamada wrote: > The denali_dt_probe() calls clk_disable_unprepare() in the bailout > path, whereas denali_dt_remove calls clk_disable(), inconsistently. > Replace the latter with clk_disable_unprepare() to make sure to > unprepare the clock. > >

Re: [PATCH] mtd: nand: denali_dt: replace clk_disable() with clk_disable_unprepare()

2016-11-05 Thread Marek Vasut
On 11/02/2016 06:21 PM, Masahiro Yamada wrote: > The denali_dt_probe() calls clk_disable_unprepare() in the bailout > path, whereas denali_dt_remove calls clk_disable(), inconsistently. > Replace the latter with clk_disable_unprepare() to make sure to > unprepare the clock. > > Signed-off-by:

Re: [PATCH] mtd: nand: denali_dt: replace clk_disable() with clk_disable_unprepare()

2016-11-05 Thread Marek Vasut
On 11/02/2016 06:21 PM, Masahiro Yamada wrote: > The denali_dt_probe() calls clk_disable_unprepare() in the bailout > path, whereas denali_dt_remove calls clk_disable(), inconsistently. > Replace the latter with clk_disable_unprepare() to make sure to > unprepare the clock. > > Signed-off-by:

[PATCH] mtd: nand: denali_dt: replace clk_disable() with clk_disable_unprepare()

2016-11-02 Thread Masahiro Yamada
The denali_dt_probe() calls clk_disable_unprepare() in the bailout path, whereas denali_dt_remove calls clk_disable(), inconsistently. Replace the latter with clk_disable_unprepare() to make sure to unprepare the clock. Signed-off-by: Masahiro Yamada ---

[PATCH] mtd: nand: denali_dt: replace clk_disable() with clk_disable_unprepare()

2016-11-02 Thread Masahiro Yamada
The denali_dt_probe() calls clk_disable_unprepare() in the bailout path, whereas denali_dt_remove calls clk_disable(), inconsistently. Replace the latter with clk_disable_unprepare() to make sure to unprepare the clock. Signed-off-by: Masahiro Yamada --- drivers/mtd/nand/denali_dt.c | 2 +- 1