Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43685
b: refs/heads/master
c: 40e8265
h: refs/heads/master
i:
  43683: eb67cbf
v: v3
  • Loading branch information
Jiri Slaby authored and Linus Torvalds committed Dec 8, 2006
1 parent 4b1c118 commit 6d2b904
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 60be481089524b88fc777433494c6842f1f652a4
refs/heads/master: 40e82652128f67ffc2d8117e186736a92a15d64c
16 changes: 8 additions & 8 deletions trunk/drivers/char/stallion.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;

Expand All @@ -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;

Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 6d2b904

Please sign in to comment.