Commit cda5265e authored by Jiri Slaby's avatar Jiri Slaby Committed by Linus Torvalds

[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: <R.E.Wolff@BitWizard.nl>
Signed-off-by: default avatarJiri Slaby <jirislaby@gmail.com>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 4a7cb69b
...@@ -2034,7 +2034,7 @@ static int sx_init_board (struct sx_board *board) ...@@ -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; static int header_printed;
...@@ -2047,7 +2047,7 @@ static void printheader(void) ...@@ -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; struct vpd_prom vpdp;
char *p; char *p;
...@@ -2125,7 +2125,7 @@ static int probe_sx (struct sx_board *board) ...@@ -2125,7 +2125,7 @@ static int probe_sx (struct sx_board *board)
card. 0xe0000 and 0xf0000 are taken by the BIOS. That only leaves card. 0xe0000 and 0xf0000 are taken by the BIOS. That only leaves
0xc0000, 0xc8000, 0xd0000 and 0xd8000 . */ 0xc0000, 0xc8000, 0xd0000 and 0xd8000 . */
static int probe_si (struct sx_board *board) static int __devinit probe_si (struct sx_board *board)
{ {
int i; int i;
...@@ -2364,7 +2364,7 @@ static void __exit sx_release_drivers(void) ...@@ -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, 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 */ 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; unsigned int hwbase;
void __iomem *rebase; void __iomem *rebase;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment