mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 17:23:55 +08:00
[PATCH] savagefb: fix section mismatch warnings
Fix modpost section mismatch warnings in savagefb driver: WARNING: drivers/video/savage/savagefb.o - Section mismatch: reference to .init.text: from .exit.text after 'savagefb_remove' (at offset 0x66) WARNING: drivers/video/savage/savagefb.o - Section mismatch: reference to .init.text: from .exit.text after 'savagefb_remove' (at offset 0x6e) WARNING: drivers/video/savage/savagefb.o - Section mismatch: reference to .init.text: from .text.savagefb_resume after 'savagefb_resume' (at offset 0x70) Signed-off-by: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
246846fc18
commit
a61bdaad6c
@ -1545,7 +1545,7 @@ static int __devinit savage_map_mmio (struct fb_info *info)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void __devinit savage_unmap_mmio (struct fb_info *info)
|
||||
static void savage_unmap_mmio (struct fb_info *info)
|
||||
{
|
||||
struct savagefb_par *par = info->par;
|
||||
DBG ("savage_unmap_mmio");
|
||||
@ -1597,7 +1597,7 @@ static int __devinit savage_map_video (struct fb_info *info,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void __devinit savage_unmap_video (struct fb_info *info)
|
||||
static void savage_unmap_video (struct fb_info *info)
|
||||
{
|
||||
struct savagefb_par *par = info->par;
|
||||
|
||||
@ -1614,7 +1614,7 @@ static void __devinit savage_unmap_video (struct fb_info *info)
|
||||
}
|
||||
}
|
||||
|
||||
static int __devinit savage_init_hw (struct savagefb_par *par)
|
||||
static int savage_init_hw (struct savagefb_par *par)
|
||||
{
|
||||
unsigned char config1, m, n, n1, n2, sr8, cr3f, cr66 = 0, tmp;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user