Re: [PATCH v2 2/4] clk: core: link consumer with clock driver

2018-12-03 Thread Miquel Raynal
Hello, kbuild test robot wrote on Sat, 1 Dec 2018 08:29:05 +0800: > Hi Miquel, > > I love your patch! Yet something to improve: > > [auto build test ERROR on clk/clk-next] > [also build test ERROR on v4.20-rc4 next-20181130] > [if your patch is applied to the wrong git tree, please drop us a n

Re: [PATCH v2 2/4] clk: core: link consumer with clock driver

2018-11-30 Thread kbuild test robot
Hi Miquel, I love your patch! Yet something to improve: [auto build test ERROR on clk/clk-next] [also build test ERROR on v4.20-rc4 next-20181130] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits

[PATCH v2 2/4] clk: core: link consumer with clock driver

2018-11-30 Thread Miquel Raynal
One major concern when, for instance, suspending/resuming a platform is to never access registers before the underlying clock has been resumed, otherwise most of the time the kernel will just crash. One solution is to use syscore operations when registering clock drivers suspend/resume callbacks. O