Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1470693
| From | Rafał Miłecki <zajec5@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] clk: return unsigned int in dummy non-OF of_clk_get_parent_count() |
| Date | 2016-08-26 15:00 +0200 |
| Message-ID | <saoTL-7aM-27@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
From: Rafał Miłecki <rafal@milecki.pl>
In the commit 929e7f3bc7b82 ("clk: Make of_clk_get_parent_count() return
unsigned ints") of_clk_get_parent_count has been modified to return
unsigned int. There is also a dummy implementation of the same function
for configs without CONFIG_OF. For the consistency it should be updated
as well.
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
---
include/linux/clk-provider.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h
index f403b8a..37b8fdc 100644
--- a/include/linux/clk-provider.h
+++ b/include/linux/clk-provider.h
@@ -854,7 +854,7 @@ of_clk_hw_onecell_get(struct of_phandle_args *clkspec, void *data)
{
return ERR_PTR(-ENOENT);
}
-static inline int of_clk_get_parent_count(struct device_node *np)
+static inline unsigned int of_clk_get_parent_count(struct device_node *np)
{
return 0;
}
--
2.9.3
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] clk: return unsigned int in dummy non-OF of_clk_get_parent_count() Rafał Miłecki <zajec5@gmail.com> - 2016-08-26 15:00 +0200 Re: [PATCH] clk: return unsigned int in dummy non-OF of_clk_get_parent_count() Stephen Boyd <sboyd@codeaurora.org> - 2016-08-26 21:30 +0200
csiph-web