[PATCH v2] sched: Fix compiler warnings
From: linux@roeck-us.net (Guenter Roeck)
Date: 2014-06-25 16:09:22
Also in:
linuxppc-dev, lkml
From: linux@roeck-us.net (Guenter Roeck)
Date: 2014-06-25 16:09:22
Also in:
linuxppc-dev, lkml
On 06/25/2014 08:52 AM, Uwe Kleine-K?nig wrote:
Hello, On Wed, Jun 25, 2014 at 03:40:28PM +0000, David Laight wrote:quoted
From: Guenter Roeckquoted
Actually turns out one can use __attribute_const__, and it is static inline int __attribute_const__ cpu_corepower_flags(void) which turns out to be widely used. I'll change that and resubmit after testing.You don't need to tell the compiler that for an inline function.I didn't check for the functions in question here, but in general your statement is wrong. For example: static inline unsigned int __attribute_const__ read_cpuid_id(void) { return readl(BASEADDR_V7M_SCB + V7M_SCB_CPUID); } from arch/arm/include/asm/cputype.h. The V7M_SCB_CPUID register never changes, but there is no way gcc can deduce that.
Sigh. As I mentioned earlier, it is much easier to introduce a problem than to fix it. Ok, I'll leave this alone. I already spent much more time on this than I should or have, so it is really time to move on. Guenter