mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] intel_agp: dangling devexit reference
@ 2004-10-14 19:28 Randy.Dunlap
  0 siblings, 0 replies; only message in thread
From: Randy.Dunlap @ 2004-10-14 19:28 UTC (permalink / raw)
  To: lkml, akpm, davej

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


Fix error found by 'scripts/reference_discarded.pl':
Error: ./drivers/char/agp/intel-agp.o .data refers to 00000914 
R_386_32          .exit.text

-- 
~Randy

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


Fix error found by 'scripts/reference_discarded.pl':
Error: ./drivers/char/agp/intel-agp.o .data refers to 00000914 R_386_32          .exit.text

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

diffstat:=
 drivers/char/agp/intel-agp.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -Naurp ./drivers/char/agp/intel-agp.c~intel_agp_devexit ./drivers/char/agp/intel-agp.c
--- ./drivers/char/agp/intel-agp.c~intel_agp_devexit	2004-10-11 21:09:57.000000000 -0700
+++ ./drivers/char/agp/intel-agp.c	2004-10-12 22:14:55.289864744 -0700
@@ -1778,7 +1778,7 @@ static struct pci_driver agp_intel_pci_d
 	.name		= "agpgart-intel",
 	.id_table	= agp_intel_pci_table,
 	.probe		= agp_intel_probe,
-	.remove		= agp_intel_remove,
+	.remove		= __devexit_p(agp_intel_remove),
 	.resume		= agp_intel_resume,
 };
 

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-10-14 19:44 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-10-14 19:28 [PATCH] intel_agp: dangling devexit reference Randy.Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome