From cda5265e7c5ba5f23c83f2f0693fef392b39e7e5 Mon Sep 17 00:00:00 2001 From: Jiri Slaby Date: Fri, 8 Dec 2006 02:39:00 -0800 Subject: [PATCH] [PATCH] Char: sx, mark functions as devinit Mark as much as possible functions as __devinit to free them after driver initialization (if no hotplug). Cc: Signed-off-by: Jiri Slaby Cc: Alan Cox Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- drivers/char/sx.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/char/sx.c b/drivers/char/sx.c index 5fb79f5..a85f5eb 100644 --- a/drivers/char/sx.c +++ b/drivers/char/sx.c @@ -2034,7 +2034,7 @@ static int sx_init_board (struct sx_board *board) } -static void printheader(void) +static void __devinit printheader(void) { static int header_printed; @@ -2047,7 +2047,7 @@ static void printheader(void) } -static int probe_sx (struct sx_board *board) +static int __devinit probe_sx (struct sx_board *board) { struct vpd_prom vpdp; char *p; @@ -2125,7 +2125,7 @@ static int probe_sx (struct sx_board *board) card. 0xe0000 and 0xf0000 are taken by the BIOS. That only leaves 0xc0000, 0xc8000, 0xd0000 and 0xd8000 . */ -static int probe_si (struct sx_board *board) +static int __devinit probe_si (struct sx_board *board) { int i; @@ -2364,7 +2364,7 @@ static void __exit sx_release_drivers(void) EEprom. As the bit is read/write for the CPU, we can fix it here, if we detect that it isn't set correctly. -- REW */ -static void fix_sx_pci (struct pci_dev *pdev, struct sx_board *board) +static void __devinit fix_sx_pci(struct pci_dev *pdev, struct sx_board *board) { unsigned int hwbase; void __iomem *rebase; -- 2.7.4