
24 May
2011
24 May
'11
8:23 p.m.
On Tuesday, May 24, 2011 11:06:03 McClintock Matthew-B29882 wrote:
On Mon, May 23, 2011 at 7:25 PM, Mike Frysinger vapier@gentoo.org wrote:
void __weak flush_icache(void) { /* please define arch specific flush_icache */ puts("No arch specific flush_icache available!\n"); }
This syntax does not quite work for me... how about something like:
void flush_icache(void) __attribute__((weak)); void flush_icache(void)
now, that's exactly what i do not want. i'm guessing you simply did not include linux/compiler.h and so was missing the __weak define. -mike