Message ID | 20190715201234.13556-2-andrew.smirnov@gmail.com (mailing list archive) |
---|---|
State | Changes Requested, archived |
Headers | show |
Series | [1/6] clk: Sync prototypes for clk_bulk_enable() | expand |
diff --git a/include/linux/clk.h b/include/linux/clk.h index a35868ccc912..8af6b943bb9a 100644 --- a/include/linux/clk.h +++ b/include/linux/clk.h @@ -239,7 +239,8 @@ static inline int clk_prepare(struct clk *clk) return 0; } -static inline int __must_check clk_bulk_prepare(int num_clks, struct clk_bulk_data *clks) +static inline int __must_check +clk_bulk_prepare(int num_clks, const struct clk_bulk_data *clks) { might_sleep(); return 0;
No-op version of clk_bulk_prepare() should have the same protoype as the real implementation, so constify the last argument to make it so. Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Cc: Russell King <linux@armlinux.org.uk> Cc: Chris Healy <cphealy@gmail.com> Cc: linux-clk@vger.kernel.org Cc: linux-kernel@vger.kernel.org --- include/linux/clk.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)