The patch titled char: mxser_new, use __(dev)init macros has been added to the -mm tree. Its filename is char-mxser_new-use-__devinit-macros.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: char: mxser_new, use __(dev)init macros From: Jiri Slaby <jirislaby@xxxxxxxxx> mxser_new, use __(dev)init macros Let kernel know what can be freed after init of the driver. Signed-off-by: Jiri Slaby <jirislaby@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/mxser_new.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff -puN drivers/char/mxser_new.c~char-mxser_new-use-__devinit-macros drivers/char/mxser_new.c --- a/drivers/char/mxser_new.c~char-mxser_new-use-__devinit-macros +++ a/drivers/char/mxser_new.c @@ -559,7 +559,7 @@ static void process_txrx_fifo(struct mxs } } -static int mxser_initbrd(struct mxser_board *brd) +static int __devinit mxser_initbrd(struct mxser_board *brd) { struct mxser_port *info; unsigned int i; @@ -617,7 +617,7 @@ static int mxser_initbrd(struct mxser_bo 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) { unsigned int i, j; @@ -678,7 +678,7 @@ static int mxser_get_PCI_conf(int board_ return 0; } -static int mxser_init(void) +static int __init mxser_init(void) { struct pci_dev *pdev = NULL; struct mxser_board *brd; @@ -2925,7 +2925,7 @@ static int mxser_read_register(int, unsi static int mxser_program_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; unsigned short regs[16], irq; _ Patches currently in -mm which might be from jirislaby@xxxxxxxxx are origin.patch git-watchdog.patch pci-mxser-pci-refcounts.patch mxser-make-an-experimental-clone.patch char-mxser_new-correct-include-file.patch char-mxser_new-upgrade-to-191.patch char-mxser_new-rework-to-allow-dynamic-structs.patch char-mxser_new-kill-unneeded-memsets.patch char-mxser_new-use-__devinit-macros.patch char-mxser_new-pci_request_region-for-pci-regions.patch char-mxser_new-check-request_region-retvals.patch hisax-niccy-cleanup.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html