Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1256217
| From | Stephen Boyd <sboyd@codeaurora.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] clk: versatile: Make depend on OF when COMPILE_TEST |
| Date | 2015-10-26 20:00 +0100 |
| Message-ID | <qnV9T-3lX-7@gated-at.bofh.it> (permalink) |
| References | <qnCgW-hK-15@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 10/26, Javier Martinez Canillas wrote:
> Commit 4a7748c3d641 ("clk: Allow drivers to build if COMPILE_TEST is
> enabled") allowed clk drives to be compile tested on other archs but
s/drives/drivers/
> the COMMON_CLK_VERSATILE was only enabled on platforms that already
> selected OF support so the drivers assume it will always be enabled.
>
> So, restrict compile test for these drivers only if OF is enabled.
No compiler error message?
>
> Fixes: 4a7748c3d641 ("clk: Allow drivers to build if COMPILE_TEST is enabled")
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
>
No Reported-by?
I'd prefer we add stubs instead, so I've applied the patch below.
---8<---
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h
index bbb8fed11e44..dbedee565ad7 100644
--- a/include/linux/clk-provider.h
+++ b/include/linux/clk-provider.h
@@ -691,6 +691,15 @@ static inline struct clk *of_clk_src_onecell_get(
{
return ERR_PTR(-ENOENT);
}
+static inline int of_clk_get_parent_count(struct device_node *np)
+{
+ return 0;
+}
+static inline int of_clk_parent_fill(struct device_node *np,
+ const char **parents, unsigned int size)
+{
+ return 0;
+}
static inline const char *of_clk_get_parent_name(struct device_node *np,
int index)
{
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] clk: versatile: Make depend on OF when COMPILE_TEST Javier Martinez Canillas <javier@osg.samsung.com> - 2015-10-25 23:50 +0100
Re: [PATCH] clk: versatile: Make depend on OF when COMPILE_TEST Geert Uytterhoeven <geert@linux-m68k.org> - 2015-10-26 10:10 +0100
Re: [PATCH] clk: versatile: Make depend on OF when COMPILE_TEST Javier Martinez Canillas <javier@osg.samsung.com> - 2015-10-26 15:50 +0100
Re: [PATCH] clk: versatile: Make depend on OF when COMPILE_TEST Stephen Boyd <sboyd@codeaurora.org> - 2015-10-26 20:00 +0100
Re: [PATCH] clk: versatile: Make depend on OF when COMPILE_TEST Javier Martinez Canillas <javier@osg.samsung.com> - 2015-10-26 23:10 +0100
csiph-web