Commit 313cc59eacc26cc7e8638660ec5a0ffb5e319045
Committed by
Linus Torvalds
1 parent
e3a1938805
Exists in
master
and in
39 other branches
framebuffer: fix carminefb section mismatch
Make alloc_carmine_fb() __devinit. WARNING: drivers/video/carminefb.o(.text+0x81b): Section mismatch in reference from the function alloc_carmine_fb() to the variable .devinit.data:carminefb_fix The function alloc_carmine_fb() references the variable __devinitdata carminefb_fix. This is often because alloc_carmine_fb lacks a __devinitdata annotation or the annotation of carminefb_fix is wrong. Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Cc: Sebastian Siewior <bigeasy@linutronix.de> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Krzysztof Helt <krzysztof.h1@poczta.fm> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
drivers/video/carminefb.c
... | ... | @@ -535,7 +535,7 @@ |
535 | 535 | .fb_setcolreg = carmine_setcolreg, |
536 | 536 | }; |
537 | 537 | |
538 | -static int alloc_carmine_fb(void __iomem *regs, void __iomem *smem_base, | |
538 | +static int __devinit alloc_carmine_fb(void __iomem *regs, void __iomem *smem_base, | |
539 | 539 | int smem_offset, struct device *device, struct fb_info **rinfo) |
540 | 540 | { |
541 | 541 | int ret; |