RE: [PATCH v4 1/5] dm: clk: add stub when CONFIG_CLK is desactivated

2020-03-05 Thread Patrick DELAUNAY
Hi Simon, > From: Simon Goldschmidt > Sent: mercredi 4 mars 2020 20:49 > > Am 18.02.2020 um 09:34 schrieb Patrick Delaunay: > > Add stub for functions clk_...() when CONFIG_CLK is desactivated. > > > > This patch avoids compilation issues for driver using these API > > without protection (#if

Re: [PATCH v4 1/5] dm: clk: add stub when CONFIG_CLK is desactivated

2020-03-04 Thread Simon Goldschmidt
Am 18.02.2020 um 09:34 schrieb Patrick Delaunay: > Add stub for functions clk_...() when CONFIG_CLK is desactivated. > > This patch avoids compilation issues for driver using these API > without protection (#if CONFIG_IS_ENABLED(CLK)) > > For example, before this patch we have undefined

[PATCH v4 1/5] dm: clk: add stub when CONFIG_CLK is desactivated

2020-02-18 Thread Patrick Delaunay
Add stub for functions clk_...() when CONFIG_CLK is desactivated. This patch avoids compilation issues for driver using these API without protection (#if CONFIG_IS_ENABLED(CLK)) For example, before this patch we have undefined reference to `clk_disable_bulk') for code: clk_disable_bulk(>clks);