From: Hannes Reinecke <hare@suse.de>
Date: Thu Aug 25 12:45:27 2011 +0200
Subject: hpsa: annotation fixes
Patch-Mainline: Not yet

The hpsa driver is missing some section annotations.

Signed-off-by: Hannes Reinecke <hare@suse.de>

diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c
index accffe3..96a2a8b 100644
--- a/drivers/scsi/hpsa.c
+++ b/drivers/scsi/hpsa.c
@@ -3879,7 +3879,7 @@ static int __devinit hpsa_enter_simple_mode(struct ctlr_info *h)
 	return 0;
 }
 
-static void __devexit hpsa_remove_one(struct pci_dev *pdev);
+static void hpsa_remove_one(struct pci_dev *pdev);
 
 static int __devinit hpsa_pci_init(struct ctlr_info *h)
 {
@@ -4122,7 +4122,7 @@ static void hpsa_undo_allocations_after_kdump_soft_reset(struct ctlr_info *h)
 	kfree(h);
 }
 
-int hpsa_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
+int __devinit hpsa_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
 {
 	int dac, rc;
 	struct ctlr_info *h;
@@ -4334,7 +4334,7 @@ static void hpsa_shutdown(struct pci_dev *pdev)
 #endif				/* CONFIG_PCI_MSI */
 }
 
-static void __devexit hpsa_remove_one(struct pci_dev *pdev)
+static void hpsa_remove_one(struct pci_dev *pdev)
 {
 	struct ctlr_info *h;
 
