From 6d2b90482d8ee6831dad2655809281f3ac8b5a1d Mon Sep 17 00:00:00 2001 From: Jiri Slaby Date: Fri, 8 Dec 2006 02:38:41 -0800 Subject: [PATCH] --- yaml --- r: 43685 b: refs/heads/master c: 40e82652128f67ffc2d8117e186736a92a15d64c h: refs/heads/master i: 43683: eb67cbf7fdf4ddc2400e8fe3a6e38720fe539e7a v: v3 --- [refs] | 2 +- trunk/drivers/char/stallion.c | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/[refs] b/[refs] index c8713be7fcad..d20d9987c836 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 60be481089524b88fc777433494c6842f1f652a4 +refs/heads/master: 40e82652128f67ffc2d8117e186736a92a15d64c diff --git a/trunk/drivers/char/stallion.c b/trunk/drivers/char/stallion.c index 639a0569e6f2..c476da100b00 100644 --- a/trunk/drivers/char/stallion.c +++ b/trunk/drivers/char/stallion.c @@ -700,7 +700,7 @@ static struct class *stallion_class; * Check for any arguments passed in on the module load command line. */ -static void stl_argbrds(void) +static void __init stl_argbrds(void) { struct stlconf conf; struct stlbrd *brdp; @@ -767,7 +767,7 @@ static unsigned long stl_atol(char *str) * Parse the supplied argument string, into the board conf struct. */ -static int stl_parsebrd(struct stlconf *confp, char **argp) +static int __init stl_parsebrd(struct stlconf *confp, char **argp) { char *sp; int i; @@ -2014,7 +2014,7 @@ static int __init stl_initports(struct stlbrd *brdp, struct stlpanel *panelp) * Try to find and initialize an EasyIO board. */ -static int stl_initeio(struct stlbrd *brdp) +static int __init stl_initeio(struct stlbrd *brdp) { struct stlpanel *panelp; unsigned int status; @@ -2155,7 +2155,7 @@ static int stl_initeio(struct stlbrd *brdp) * dealing with all types of ECH board. */ -static int stl_initech(struct stlbrd *brdp) +static int __init stl_initech(struct stlbrd *brdp) { struct stlpanel *panelp; unsigned int status, nxtid, ioaddr, conflict; @@ -2414,7 +2414,7 @@ static int __init stl_brdinit(struct stlbrd *brdp) * Find the next available board number that is free. */ -static int stl_getbrdnr(void) +static int __init stl_getbrdnr(void) { int i; @@ -2438,7 +2438,7 @@ static int stl_getbrdnr(void) * configuration space. */ -static int stl_initpcibrd(int brdtype, struct pci_dev *devp) +static int __init stl_initpcibrd(int brdtype, struct pci_dev *devp) { struct stlbrd *brdp; @@ -2500,7 +2500,7 @@ static int stl_initpcibrd(int brdtype, struct pci_dev *devp) */ -static int stl_findpcibrds(void) +static int __init stl_findpcibrds(void) { struct pci_dev *dev = NULL; int i, rc; @@ -2536,7 +2536,7 @@ static int stl_findpcibrds(void) * since the initial search and setup is too different. */ -static int stl_initbrds(void) +static int __init stl_initbrds(void) { struct stlbrd *brdp; struct stlconf *confp;