Re: [PATCH V3] spi: sun4i: disable clocks in the remove function

2017-12-07 Thread Mark Brown
On Thu, Dec 07, 2017 at 04:20:14PM +0900, Takuo Koguchi wrote: > mclk and hclk need to be disabled. Since pm_runtime_disable does > not disable the clocks, use pm_runtime_force_suspend instead. Please don't send new patches in reply to existing threads, it makes it harder to spot them. signature

Re: [PATCH V3] spi: sun4i: disable clocks in the remove function

2017-12-07 Thread Maxime Ripard
Hi, On Thu, Dec 07, 2017 at 04:20:14PM +0900, Takuo Koguchi wrote: > mclk and hclk need to be disabled. Since pm_runtime_disable does > not disable the clocks, use pm_runtime_force_suspend instead. > > Found by Linux Driver Verification project (linuxtesting.org). > > Signed-off-by: Takuo Koguch

[PATCH V3] spi: sun4i: disable clocks in the remove function

2017-12-06 Thread Takuo Koguchi
mclk and hclk need to be disabled. Since pm_runtime_disable does not disable the clocks, use pm_runtime_force_suspend instead. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Takuo Koguchi --- V3: remove redundant pm_runtime_disable call. Compile test only, no