Commit 40e82652 authored by Jiri Slaby's avatar Jiri Slaby Committed by Linus Torvalds

[PATCH] Char: stallion, mark functions as init

Use __init macro for functions, that may be freed after initialization.
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 60be4810
...@@ -700,7 +700,7 @@ static struct class *stallion_class; ...@@ -700,7 +700,7 @@ static struct class *stallion_class;
* Check for any arguments passed in on the module load command line. * 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 stlconf conf;
struct stlbrd *brdp; struct stlbrd *brdp;
...@@ -767,7 +767,7 @@ static unsigned long stl_atol(char *str) ...@@ -767,7 +767,7 @@ static unsigned long stl_atol(char *str)
* Parse the supplied argument string, into the board conf struct. * 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; char *sp;
int i; int i;
...@@ -2014,7 +2014,7 @@ static int __init stl_initports(struct stlbrd *brdp, struct stlpanel *panelp) ...@@ -2014,7 +2014,7 @@ static int __init stl_initports(struct stlbrd *brdp, struct stlpanel *panelp)
* Try to find and initialize an EasyIO board. * 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; struct stlpanel *panelp;
unsigned int status; unsigned int status;
...@@ -2155,7 +2155,7 @@ static int stl_initeio(struct stlbrd *brdp) ...@@ -2155,7 +2155,7 @@ static int stl_initeio(struct stlbrd *brdp)
* dealing with all types of ECH board. * 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; struct stlpanel *panelp;
unsigned int status, nxtid, ioaddr, conflict; unsigned int status, nxtid, ioaddr, conflict;
...@@ -2414,7 +2414,7 @@ static int __init stl_brdinit(struct stlbrd *brdp) ...@@ -2414,7 +2414,7 @@ static int __init stl_brdinit(struct stlbrd *brdp)
* Find the next available board number that is free. * Find the next available board number that is free.
*/ */
static int stl_getbrdnr(void) static int __init stl_getbrdnr(void)
{ {
int i; int i;
...@@ -2438,7 +2438,7 @@ static int stl_getbrdnr(void) ...@@ -2438,7 +2438,7 @@ static int stl_getbrdnr(void)
* configuration space. * 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; struct stlbrd *brdp;
...@@ -2500,7 +2500,7 @@ static int stl_initpcibrd(int brdtype, struct pci_dev *devp) ...@@ -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; struct pci_dev *dev = NULL;
int i, rc; int i, rc;
...@@ -2536,7 +2536,7 @@ static int stl_findpcibrds(void) ...@@ -2536,7 +2536,7 @@ static int stl_findpcibrds(void)
* since the initial search and setup is too different. * since the initial search and setup is too different.
*/ */
static int stl_initbrds(void) static int __init stl_initbrds(void)
{ {
struct stlbrd *brdp; struct stlbrd *brdp;
struct stlconf *confp; struct stlconf *confp;
......
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