[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1242632850-16268-1-git-send-email-vapier@gentoo.org>
Date: Mon, 18 May 2009 03:47:30 -0400
From: Mike Frysinger <vapier@...too.org>
To: linux-kernel@...r.kernel.org
Cc: Greg Ungerer <gerg@...inux.org>
Subject: [PATCH] istallion: add missing __devexit marking
The remove member of the pci_driver stli_pcidriver uses __devexit_p(),
so the remove function itself should be marked with __devexit. Even
more so considering the probe function is marked with __devinit.
Signed-off-by: Mike Frysinger <vapier@...too.org>
CC: Greg Ungerer <gerg@...inux.org>
---
drivers/char/istallion.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/char/istallion.c b/drivers/char/istallion.c
index fff19f7..e8392c2 100644
--- a/drivers/char/istallion.c
+++ b/drivers/char/istallion.c
@@ -3785,7 +3785,7 @@ err:
return retval;
}
-static void stli_pciremove(struct pci_dev *pdev)
+static void __devexit stli_pciremove(struct pci_dev *pdev)
{
struct stlibrd *brdp = pci_get_drvdata(pdev);
--
1.6.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists