mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
clk: add more __must_check for bulk APIs
we need it even when !CONFIG_HAVE_CLK because it allows us to catch missing checking return values in the non-clk compile configurations too. More test coverage. Cc: Stephen Boyd <sboyd@codeaurora.org> Suggested-by: Stephen Boyd <sboyd@codeaurora.org> Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
parent
7928b2cbe5
commit
6e0d4ff458
1 changed files with 8 additions and 8 deletions
|
@ -209,7 +209,7 @@ static inline int clk_prepare(struct clk *clk)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int clk_bulk_prepare(int num_clks, struct clk_bulk_data *clks)
|
static inline int __must_check clk_bulk_prepare(int num_clks, struct clk_bulk_data *clks)
|
||||||
{
|
{
|
||||||
might_sleep();
|
might_sleep();
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -603,7 +603,7 @@ static inline struct clk *clk_get(struct device *dev, const char *id)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int clk_bulk_get(struct device *dev, int num_clks,
|
static inline int __must_check clk_bulk_get(struct device *dev, int num_clks,
|
||||||
struct clk_bulk_data *clks)
|
struct clk_bulk_data *clks)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -614,7 +614,7 @@ static inline struct clk *devm_clk_get(struct device *dev, const char *id)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int devm_clk_bulk_get(struct device *dev, int num_clks,
|
static inline int __must_check devm_clk_bulk_get(struct device *dev, int num_clks,
|
||||||
struct clk_bulk_data *clks)
|
struct clk_bulk_data *clks)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -645,7 +645,7 @@ static inline int clk_enable(struct clk *clk)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int clk_bulk_enable(int num_clks, struct clk_bulk_data *clks)
|
static inline int __must_check clk_bulk_enable(int num_clks, struct clk_bulk_data *clks)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -719,7 +719,7 @@ static inline void clk_disable_unprepare(struct clk *clk)
|
||||||
clk_unprepare(clk);
|
clk_unprepare(clk);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int clk_bulk_prepare_enable(int num_clks,
|
static inline int __must_check clk_bulk_prepare_enable(int num_clks,
|
||||||
struct clk_bulk_data *clks)
|
struct clk_bulk_data *clks)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
Loading…
Reference in a new issue