* GCC 4.7 stops to compile the current git kernel
@ 2012-11-15 13:11 Igor Mazanov
2012-11-15 13:25 ` Felipe Balbi
0 siblings, 1 reply; 2+ messages in thread
From: Igor Mazanov @ 2012-11-15 13:11 UTC (permalink / raw)
To: linux-omap
Hello,
After a conversion to common clock framework GCC 4.7 stops to compile the
current kernel with the following error:
CC arch/arm/mach-omap2/clockdomain.o
In file included from arch/arm/mach-omap2/clockdomain.c:25:0:
arch/arm/mach-omap2/clockdomain.c: In function 'clkdm_clk_disable':
include/linux/clk-provider.h:338:12: error: inlining failed in call to
always_inline '__clk_get_enable_count': function body not available
arch/arm/mach-omap2/clockdomain.c:1001:28: error: called from here
make[1]: *** [arch/arm/mach-omap2/clockdomain.o] Error 1
make: *** [arch/arm/mach-omap2] Error 2
This change helps:
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h
index c127315..f9f5e9e 100644
--- a/include/linux/clk-provider.h
+++ b/include/linux/clk-provider.h
@@ -335,8 +335,8 @@ const char *__clk_get_name(struct clk *clk);
struct clk_hw *__clk_get_hw(struct clk *clk);
u8 __clk_get_num_parents(struct clk *clk);
struct clk *__clk_get_parent(struct clk *clk);
-inline int __clk_get_enable_count(struct clk *clk);
-inline int __clk_get_prepare_count(struct clk *clk);
+int __clk_get_enable_count(struct clk *clk);
+int __clk_get_prepare_count(struct clk *clk);
unsigned long __clk_get_rate(struct clk *clk);
unsigned long __clk_get_flags(struct clk *clk);
int __clk_is_enabled(struct clk *clk);
Regards,
Igor.
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: GCC 4.7 stops to compile the current git kernel
2012-11-15 13:11 GCC 4.7 stops to compile the current git kernel Igor Mazanov
@ 2012-11-15 13:25 ` Felipe Balbi
0 siblings, 0 replies; 2+ messages in thread
From: Felipe Balbi @ 2012-11-15 13:25 UTC (permalink / raw)
To: Igor Mazanov; +Cc: linux-omap
[-- Attachment #1: Type: text/plain, Size: 1655 bytes --]
Hi,
On Thu, Nov 15, 2012 at 05:11:14PM +0400, Igor Mazanov wrote:
> Hello,
>
> After a conversion to common clock framework GCC 4.7 stops to compile
> the current kernel with the following error:
>
> CC arch/arm/mach-omap2/clockdomain.o
> In file included from arch/arm/mach-omap2/clockdomain.c:25:0:
> arch/arm/mach-omap2/clockdomain.c: In function 'clkdm_clk_disable':
> include/linux/clk-provider.h:338:12: error: inlining failed in call
> to always_inline '__clk_get_enable_count': function body not
> available
> arch/arm/mach-omap2/clockdomain.c:1001:28: error: called from here
> make[1]: *** [arch/arm/mach-omap2/clockdomain.o] Error 1
> make: *** [arch/arm/mach-omap2] Error 2
>
> This change helps:
>
> diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h
> index c127315..f9f5e9e 100644
> --- a/include/linux/clk-provider.h
> +++ b/include/linux/clk-provider.h
> @@ -335,8 +335,8 @@ const char *__clk_get_name(struct clk *clk);
> struct clk_hw *__clk_get_hw(struct clk *clk);
> u8 __clk_get_num_parents(struct clk *clk);
> struct clk *__clk_get_parent(struct clk *clk);
> -inline int __clk_get_enable_count(struct clk *clk);
> -inline int __clk_get_prepare_count(struct clk *clk);
> +int __clk_get_enable_count(struct clk *clk);
> +int __clk_get_prepare_count(struct clk *clk);
> unsigned long __clk_get_rate(struct clk *clk);
> unsigned long __clk_get_flags(struct clk *clk);
> int __clk_is_enabled(struct clk *clk);
care to send as a proper patch and Ccing proper lists and developers ?
scripts/get_maintainer.pl will help you figure the audience ;-)
--
balbi
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-11-15 13:31 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-15 13:11 GCC 4.7 stops to compile the current git kernel Igor Mazanov
2012-11-15 13:25 ` Felipe Balbi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox