[PATCH v2] sched: Fix compiler warnings
From: Uwe Kleine-König <hidden>
Date: 2014-06-25 14:50:31
Also in:
linuxppc-dev, lkml
From: Uwe Kleine-König <hidden>
Date: 2014-06-25 14:50:31
Also in:
linuxppc-dev, lkml
Hello Guenter, On Wed, Jun 25, 2014 at 07:27:47AM -0700, Guenter Roeck wrote:
quoted
Maybe the author's intention was: static inline int cpu_corepower_flags(void) __attribute__((const)); ? This specifies that the function has no side effects and the return value only depends on the (here non-existing) function arguments.Possibly, but either I am missing something or this doesn't compile.
You need to do a separate declaration:
static inline int cpu_corepower_flags(void) __attribute__((const));
static inline int cpu_corepower_flags(void)
{
...
Does this help?
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-K?nig |
Industrial Linux Solutions | http://www.pengutronix.de/ |