Re: [PATCH] fix section mismatch in chipsfb

2007-06-25 Thread Andrew Morton
On Wed, 20 Jun 2007 00:15:28 +0200 Olaf Hering <[EMAIL PROTECTED]> wrote:

> Maybe this is the correct fix:
> 
> WARNING: drivers/built-in.o(.text+0x8742a): Section mismatch: reference to 
> .init.data:chipsfb_fix (between 'chipsfb_pci_init' and 'chipsfb_set_par')
> WARNING: drivers/built-in.o(.text+0x87432): Section mismatch: reference to 
> .init.data:chipsfb_fix (between 'chipsfb_pci_init' and 'chipsfb_set_par')
> WARNING: drivers/built-in.o(.text+0x87442): Section mismatch: reference to 
> .init.data:chipsfb_var (between 'chipsfb_pci_init' and 'chipsfb_set_par')
> WARNING: drivers/built-in.o(.text+0x8744a): Section mismatch: reference to 
> .init.data:chipsfb_var (between 'chipsfb_pci_init' and 'chipsfb_set_par')
> 
> init_chips is only called from chipsfb_pci_init
> chipsfb_fix and chipsfb_var are only referenced from init_chips
> 
> Signed-off-by: Olaf Hering <[EMAIL PROTECTED]>
> 
> --- a/drivers/video/chipsfb.c
> +++ b/drivers/video/chipsfb.c
> @@ -292,7 +292,7 @@ static void __init chips_hw_init(void)
>   write_fr(chips_init_fr[i].addr, chips_init_fr[i].data);
>  }
>  
> -static struct fb_fix_screeninfo chipsfb_fix __initdata = {
> +static struct fb_fix_screeninfo chipsfb_fix __devinitdata = {
>   .id =   "C 65550",
>   .type = FB_TYPE_PACKED_PIXELS,
>   .visual =   FB_VISUAL_PSEUDOCOLOR,
> @@ -309,7 +309,7 @@ static struct fb_fix_screeninfo chipsfb_
>   .smem_len = 0x10,   /* 1MB */
>  };
>  
> -static struct fb_var_screeninfo chipsfb_var __initdata = {
> +static struct fb_var_screeninfo chipsfb_var __devinitdata = {
>   .xres = 800,
>   .yres = 600,
>   .xres_virtual = 800,
> @@ -330,7 +330,7 @@ static struct fb_var_screeninfo chipsfb_
>   .vsync_len = 8,
>  };
>  
> -static void __init init_chips(struct fb_info *p, unsigned long addr)
> +static void __devinit init_chips(struct fb_info *p, unsigned long addr)
>  {
>   memset(p->screen_base, 0, 0x10);
>  

It looks like the correct fix to me.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] fix section mismatch in chipsfb

2007-06-25 Thread Andrew Morton
On Wed, 20 Jun 2007 00:15:28 +0200 Olaf Hering [EMAIL PROTECTED] wrote:

 Maybe this is the correct fix:
 
 WARNING: drivers/built-in.o(.text+0x8742a): Section mismatch: reference to 
 .init.data:chipsfb_fix (between 'chipsfb_pci_init' and 'chipsfb_set_par')
 WARNING: drivers/built-in.o(.text+0x87432): Section mismatch: reference to 
 .init.data:chipsfb_fix (between 'chipsfb_pci_init' and 'chipsfb_set_par')
 WARNING: drivers/built-in.o(.text+0x87442): Section mismatch: reference to 
 .init.data:chipsfb_var (between 'chipsfb_pci_init' and 'chipsfb_set_par')
 WARNING: drivers/built-in.o(.text+0x8744a): Section mismatch: reference to 
 .init.data:chipsfb_var (between 'chipsfb_pci_init' and 'chipsfb_set_par')
 
 init_chips is only called from chipsfb_pci_init
 chipsfb_fix and chipsfb_var are only referenced from init_chips
 
 Signed-off-by: Olaf Hering [EMAIL PROTECTED]
 
 --- a/drivers/video/chipsfb.c
 +++ b/drivers/video/chipsfb.c
 @@ -292,7 +292,7 @@ static void __init chips_hw_init(void)
   write_fr(chips_init_fr[i].addr, chips_init_fr[i].data);
  }
  
 -static struct fb_fix_screeninfo chipsfb_fix __initdata = {
 +static struct fb_fix_screeninfo chipsfb_fix __devinitdata = {
   .id =   CT 65550,
   .type = FB_TYPE_PACKED_PIXELS,
   .visual =   FB_VISUAL_PSEUDOCOLOR,
 @@ -309,7 +309,7 @@ static struct fb_fix_screeninfo chipsfb_
   .smem_len = 0x10,   /* 1MB */
  };
  
 -static struct fb_var_screeninfo chipsfb_var __initdata = {
 +static struct fb_var_screeninfo chipsfb_var __devinitdata = {
   .xres = 800,
   .yres = 600,
   .xres_virtual = 800,
 @@ -330,7 +330,7 @@ static struct fb_var_screeninfo chipsfb_
   .vsync_len = 8,
  };
  
 -static void __init init_chips(struct fb_info *p, unsigned long addr)
 +static void __devinit init_chips(struct fb_info *p, unsigned long addr)
  {
   memset(p-screen_base, 0, 0x10);
  

It looks like the correct fix to me.
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] fix section mismatch in chipsfb

2007-06-19 Thread Olaf Hering
Maybe this is the correct fix:

WARNING: drivers/built-in.o(.text+0x8742a): Section mismatch: reference to 
.init.data:chipsfb_fix (between 'chipsfb_pci_init' and 'chipsfb_set_par')
WARNING: drivers/built-in.o(.text+0x87432): Section mismatch: reference to 
.init.data:chipsfb_fix (between 'chipsfb_pci_init' and 'chipsfb_set_par')
WARNING: drivers/built-in.o(.text+0x87442): Section mismatch: reference to 
.init.data:chipsfb_var (between 'chipsfb_pci_init' and 'chipsfb_set_par')
WARNING: drivers/built-in.o(.text+0x8744a): Section mismatch: reference to 
.init.data:chipsfb_var (between 'chipsfb_pci_init' and 'chipsfb_set_par')

init_chips is only called from chipsfb_pci_init
chipsfb_fix and chipsfb_var are only referenced from init_chips

Signed-off-by: Olaf Hering <[EMAIL PROTECTED]>

--- a/drivers/video/chipsfb.c
+++ b/drivers/video/chipsfb.c
@@ -292,7 +292,7 @@ static void __init chips_hw_init(void)
write_fr(chips_init_fr[i].addr, chips_init_fr[i].data);
 }
 
-static struct fb_fix_screeninfo chipsfb_fix __initdata = {
+static struct fb_fix_screeninfo chipsfb_fix __devinitdata = {
.id =   "C 65550",
.type = FB_TYPE_PACKED_PIXELS,
.visual =   FB_VISUAL_PSEUDOCOLOR,
@@ -309,7 +309,7 @@ static struct fb_fix_screeninfo chipsfb_
.smem_len = 0x10,   /* 1MB */
 };
 
-static struct fb_var_screeninfo chipsfb_var __initdata = {
+static struct fb_var_screeninfo chipsfb_var __devinitdata = {
.xres = 800,
.yres = 600,
.xres_virtual = 800,
@@ -330,7 +330,7 @@ static struct fb_var_screeninfo chipsfb_
.vsync_len = 8,
 };
 
-static void __init init_chips(struct fb_info *p, unsigned long addr)
+static void __devinit init_chips(struct fb_info *p, unsigned long addr)
 {
memset(p->screen_base, 0, 0x10);
 
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] fix section mismatch in chipsfb

2007-06-19 Thread Olaf Hering
Maybe this is the correct fix:

WARNING: drivers/built-in.o(.text+0x8742a): Section mismatch: reference to 
.init.data:chipsfb_fix (between 'chipsfb_pci_init' and 'chipsfb_set_par')
WARNING: drivers/built-in.o(.text+0x87432): Section mismatch: reference to 
.init.data:chipsfb_fix (between 'chipsfb_pci_init' and 'chipsfb_set_par')
WARNING: drivers/built-in.o(.text+0x87442): Section mismatch: reference to 
.init.data:chipsfb_var (between 'chipsfb_pci_init' and 'chipsfb_set_par')
WARNING: drivers/built-in.o(.text+0x8744a): Section mismatch: reference to 
.init.data:chipsfb_var (between 'chipsfb_pci_init' and 'chipsfb_set_par')

init_chips is only called from chipsfb_pci_init
chipsfb_fix and chipsfb_var are only referenced from init_chips

Signed-off-by: Olaf Hering [EMAIL PROTECTED]

--- a/drivers/video/chipsfb.c
+++ b/drivers/video/chipsfb.c
@@ -292,7 +292,7 @@ static void __init chips_hw_init(void)
write_fr(chips_init_fr[i].addr, chips_init_fr[i].data);
 }
 
-static struct fb_fix_screeninfo chipsfb_fix __initdata = {
+static struct fb_fix_screeninfo chipsfb_fix __devinitdata = {
.id =   CT 65550,
.type = FB_TYPE_PACKED_PIXELS,
.visual =   FB_VISUAL_PSEUDOCOLOR,
@@ -309,7 +309,7 @@ static struct fb_fix_screeninfo chipsfb_
.smem_len = 0x10,   /* 1MB */
 };
 
-static struct fb_var_screeninfo chipsfb_var __initdata = {
+static struct fb_var_screeninfo chipsfb_var __devinitdata = {
.xres = 800,
.yres = 600,
.xres_virtual = 800,
@@ -330,7 +330,7 @@ static struct fb_var_screeninfo chipsfb_
.vsync_len = 8,
 };
 
-static void __init init_chips(struct fb_info *p, unsigned long addr)
+static void __devinit init_chips(struct fb_info *p, unsigned long addr)
 {
memset(p-screen_base, 0, 0x10);
 
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/