Commit 943f2959 authored by Jiri Slaby's avatar Jiri Slaby Committed by Linus Torvalds

[PATCH] char: mxser_new, use __(dev)init macros

mxser_new, use __(dev)init macros

Let kernel know what can be freed after init of the driver.
Signed-off-by: default avatarJiri Slaby <jirislaby@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 55b307da
...@@ -559,7 +559,7 @@ static void process_txrx_fifo(struct mxser_port *info) ...@@ -559,7 +559,7 @@ static void process_txrx_fifo(struct mxser_port *info)
} }
} }
static int mxser_initbrd(struct mxser_board *brd) static int __devinit mxser_initbrd(struct mxser_board *brd)
{ {
struct mxser_port *info; struct mxser_port *info;
unsigned int i; unsigned int i;
...@@ -617,7 +617,7 @@ static int mxser_initbrd(struct mxser_board *brd) ...@@ -617,7 +617,7 @@ static int mxser_initbrd(struct mxser_board *brd)
return 0; return 0;
} }
static int mxser_get_PCI_conf(int board_type, struct mxser_board *brd, static int __init mxser_get_PCI_conf(int board_type, struct mxser_board *brd,
struct pci_dev *pdev) struct pci_dev *pdev)
{ {
unsigned int i, j; unsigned int i, j;
...@@ -678,7 +678,7 @@ static int mxser_get_PCI_conf(int board_type, struct mxser_board *brd, ...@@ -678,7 +678,7 @@ static int mxser_get_PCI_conf(int board_type, struct mxser_board *brd,
return 0; return 0;
} }
static int mxser_init(void) static int __init mxser_init(void)
{ {
struct pci_dev *pdev = NULL; struct pci_dev *pdev = NULL;
struct mxser_board *brd; struct mxser_board *brd;
...@@ -2925,7 +2925,7 @@ static int mxser_read_register(int, unsigned short *); ...@@ -2925,7 +2925,7 @@ static int mxser_read_register(int, unsigned short *);
static int mxser_program_mode(int); static int mxser_program_mode(int);
static void mxser_normal_mode(int); static void mxser_normal_mode(int);
static int mxser_get_ISA_conf(int cap, struct mxser_board *brd) static int __init mxser_get_ISA_conf(int cap, struct mxser_board *brd)
{ {
int id, i, bits; int id, i, bits;
unsigned short regs[16], irq; unsigned short regs[16], irq;
......
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