linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ibmasm: fix init/exit sections
@ 2005-01-07  7:01 Randy.Dunlap
  0 siblings, 0 replies; only message in thread
From: Randy.Dunlap @ 2005-01-07  7:01 UTC (permalink / raw)
  To: akpm, amax; +Cc: lkml


Fix init & exit section usage, started with this diagnostic
from reference_discarded.pl (make buildcheck):
Error: ./drivers/misc/ibmasm/module.o .data refers to 00000058 R_386_32          .exit.text

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

diffstat:=
 drivers/misc/ibmasm/module.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff -Naurp ./drivers/misc/ibmasm/module.c~ibmasm_devexit ./drivers/misc/ibmasm/module.c
--- ./drivers/misc/ibmasm/module.c~ibmasm_devexit	2004-12-24 13:35:00.000000000 -0800
+++ ./drivers/misc/ibmasm/module.c	2005-01-06 21:33:59.261935440 -0800
@@ -57,7 +57,7 @@
 #include "remote.h"
 
 
-static int __init ibmasm_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
+static int __devinit ibmasm_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
 {
 	int err, result = -ENOMEM;
 	struct service_processor *sp;
@@ -161,7 +161,7 @@ error_kmalloc:
 	return result;
 }
 
-static void __exit ibmasm_remove_one(struct pci_dev *pdev)
+static void __devexit ibmasm_remove_one(struct pci_dev *pdev)
 {
 	struct service_processor *sp = (struct service_processor *)pci_get_drvdata(pdev);
 


---

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

only message in thread, other threads:[~2005-01-07  7:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-01-07  7:01 [PATCH] ibmasm: fix init/exit sections Randy.Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).