mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 00:26:39 +08:00
sm501fb: fix section mismatch warning
Fix section mismatch warning in sm501fb: WARNING: drivers/video/sm501fb.o(.text+0x21d6): Section mismatch in reference from the function sm501fb_init_fb() to the variable .devinit.data:sm501_default_mode The function sm501fb_init_fb() references the variable __devinitdata sm501_default_mode. This is often because sm501fb_init_fb lacks a __devinitdata annotation or the annotation of sm501_default_mode is wrong. Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
parent
3535ed3fa7
commit
9845afc8fa
@ -1664,7 +1664,7 @@ static void sm501fb_stop(struct sm501fb_info *info)
|
|||||||
resource_size(info->regs_res));
|
resource_size(info->regs_res));
|
||||||
}
|
}
|
||||||
|
|
||||||
static int sm501fb_init_fb(struct fb_info *fb,
|
static int __devinit sm501fb_init_fb(struct fb_info *fb,
|
||||||
enum sm501_controller head,
|
enum sm501_controller head,
|
||||||
const char *fbname)
|
const char *fbname)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user