All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] radeonfb: fix init/exit section usage
@ 2005-01-07 19:28 Randy.Dunlap
  2005-01-07 21:54 ` Kronos
  0 siblings, 1 reply; 3+ messages in thread
From: Randy.Dunlap @ 2005-01-07 19:28 UTC (permalink / raw)
  To: ajoshi, linux-fbdev-devel, adaplas

[-- Attachment #1: Type: text/plain, Size: 521 bytes --]


Fix 3 instances of calling exit section function from text or init:
Error: ./drivers/video/aty/radeon_base.o .text refers to 000029e5 
R_386_PC32        .exit.text
Error: ./drivers/video/aty/radeon_base.o .text refers to 00002a60 
R_386_PC32        .exit.text
Error: ./drivers/video/aty/radeon_base.o .init.text refers to 00000192 
R_386_PC32        .exit.text

Signed-off-by: Randy Dunlap <rddunlap@osdl.org>

diffstat:=
  drivers/video/aty/radeon_base.c |    2 +-
  1 files changed, 1 insertion(+), 1 deletion(-)

---

[-- Attachment #2: radeonfb_init_exit.patch --]
[-- Type: text/x-patch, Size: 566 bytes --]


diff -Naurp ./drivers/video/aty/radeon_base.c~radeonfb_initexit ./drivers/video/aty/radeon_base.c
--- ./drivers/video/aty/radeon_base.c~radeonfb_initexit	2005-01-06 21:18:20.920585008 -0800
+++ ./drivers/video/aty/radeon_base.c	2005-01-07 10:30:16.661094480 -0800
@@ -261,7 +261,7 @@ static struct backlight_controller radeo
 
 #endif /* CONFIG_PPC_OF */
 
-static void __devexit radeon_unmap_ROM(struct radeonfb_info *rinfo, struct pci_dev *dev)
+static void radeon_unmap_ROM(struct radeonfb_info *rinfo, struct pci_dev *dev)
 {
 	if (!rinfo->bios_seg)
 		return;

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] radeonfb: fix init/exit section usage
  2005-01-07 21:54 ` Kronos
@ 2005-01-07 21:24   ` Randy.Dunlap
  0 siblings, 0 replies; 3+ messages in thread
From: Randy.Dunlap @ 2005-01-07 21:24 UTC (permalink / raw)
  To: Kronos; +Cc: linux-fbdev-devel, benh, benh

Kronos wrote:
> Il Fri, Jan 07, 2005 at 11:28:07AM -0800, Randy.Dunlap ha scritto: 
> 
>>Fix 3 instances of calling exit section function from text or init:
>>Error: ./drivers/video/aty/radeon_base.o .text refers to 000029e5 
>>R_386_PC32        .exit.text
>>Error: ./drivers/video/aty/radeon_base.o .text refers to 00002a60 
>>R_386_PC32        .exit.text
>>Error: ./drivers/video/aty/radeon_base.o .init.text refers to 00000192 
>>R_386_PC32        .exit.text
>>
>>Signed-off-by: Randy Dunlap <rddunlap@osdl.org>
>>
>>diffstat:=
>> drivers/video/aty/radeon_base.c |    2 +-
>> 1 files changed, 1 insertion(+), 1 deletion(-)
>>
>>---
> 
> 
>>diff -Naurp ./drivers/video/aty/radeon_base.c~radeonfb_initexit ./drivers/video/aty/radeon_base.c
>>--- ./drivers/video/aty/radeon_base.c~radeonfb_initexit	2005-01-06 21:18:20.920585008 -0800
>>+++ ./drivers/video/aty/radeon_base.c	2005-01-07 10:30:16.661094480 -0800
>>@@ -261,7 +261,7 @@ static struct backlight_controller radeo
>> 
>> #endif /* CONFIG_PPC_OF */
>> 
>>-static void __devexit radeon_unmap_ROM(struct radeonfb_info *rinfo, struct pci_dev *dev)
>>+static void radeon_unmap_ROM(struct radeonfb_info *rinfo, struct pci_dev *dev)
>> {
>> 	if (!rinfo->bios_seg)
>> 		return;
> 
> 
> I see that radeon_unmap_ROM is called in radeonfb_pci_register (error
> path). Is this the problem?

Yes.  It was called from radeon_map_ROM() [which is __init]
and from radeonfb_pci_register().

> Oh btw, the maintainer of the new radeonfb is Ben Herrenschmidt, not Ani
> Joshi.

OK, thanks for the info.  Be nice if someone would update
MAINTAINERS with that info...

> Luca

-- 
~Randy


-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] radeonfb: fix init/exit section usage
  2005-01-07 19:28 [PATCH] radeonfb: fix init/exit section usage Randy.Dunlap
@ 2005-01-07 21:54 ` Kronos
  2005-01-07 21:24   ` Randy.Dunlap
  0 siblings, 1 reply; 3+ messages in thread
From: Kronos @ 2005-01-07 21:54 UTC (permalink / raw)
  To: Randy.Dunlap; +Cc: linux-fbdev-devel, benh

Il Fri, Jan 07, 2005 at 11:28:07AM -0800, Randy.Dunlap ha scritto: 
> 
> Fix 3 instances of calling exit section function from text or init:
> Error: ./drivers/video/aty/radeon_base.o .text refers to 000029e5 
> R_386_PC32        .exit.text
> Error: ./drivers/video/aty/radeon_base.o .text refers to 00002a60 
> R_386_PC32        .exit.text
> Error: ./drivers/video/aty/radeon_base.o .init.text refers to 00000192 
> R_386_PC32        .exit.text
> 
> Signed-off-by: Randy Dunlap <rddunlap@osdl.org>
> 
> diffstat:=
>  drivers/video/aty/radeon_base.c |    2 +-
>  1 files changed, 1 insertion(+), 1 deletion(-)
> 
> ---

> 
> diff -Naurp ./drivers/video/aty/radeon_base.c~radeonfb_initexit ./drivers/video/aty/radeon_base.c
> --- ./drivers/video/aty/radeon_base.c~radeonfb_initexit	2005-01-06 21:18:20.920585008 -0800
> +++ ./drivers/video/aty/radeon_base.c	2005-01-07 10:30:16.661094480 -0800
> @@ -261,7 +261,7 @@ static struct backlight_controller radeo
>  
>  #endif /* CONFIG_PPC_OF */
>  
> -static void __devexit radeon_unmap_ROM(struct radeonfb_info *rinfo, struct pci_dev *dev)
> +static void radeon_unmap_ROM(struct radeonfb_info *rinfo, struct pci_dev *dev)
>  {
>  	if (!rinfo->bios_seg)
>  		return;

I see that radeon_unmap_ROM is called in radeonfb_pci_register (error
path). Is this the problem?

Oh btw, the maintainer of the new radeonfb is Ben Herrenschmidt, not Ani
Joshi.

Luca
-- 
Home: http://kronoz.cjb.net
Carpe diem, quam minimum credula postero. (Q. Horatius Flaccus)


-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-01-07 22:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-01-07 19:28 [PATCH] radeonfb: fix init/exit section usage Randy.Dunlap
2005-01-07 21:54 ` Kronos
2005-01-07 21:24   ` Randy.Dunlap

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.