diff options
author | David S. Miller <davem@davemloft.net> | 2010-02-28 22:23:06 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-02-28 22:23:06 -0500 |
commit | 47871889c601d8199c51a4086f77eebd77c29b0b (patch) | |
tree | 40cdcac3bff0ee40cc33dcca61d0577cdf965f77 /drivers/char/vme_scc.c | |
parent | c16cc0b464b8876cfd57ce1c1dbcb6f9a6a0bce3 (diff) | |
parent | 30ff056c42c665b9ea535d8515890857ae382540 (diff) |
Merge branch 'master' of /home/davem/src/GIT/linux-2.6/
Conflicts:
drivers/firmware/iscsi_ibft.c
Diffstat (limited to 'drivers/char/vme_scc.c')
-rw-r--r-- | drivers/char/vme_scc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/char/vme_scc.c b/drivers/char/vme_scc.c index 994e1a58b987..8b24729fec89 100644 --- a/drivers/char/vme_scc.c +++ b/drivers/char/vme_scc.c | |||
@@ -136,7 +136,7 @@ static const struct tty_port_operations scc_port_ops = { | |||
136 | * vme_scc_init() and support functions | 136 | * vme_scc_init() and support functions |
137 | *---------------------------------------------------------------------------*/ | 137 | *---------------------------------------------------------------------------*/ |
138 | 138 | ||
139 | static int scc_init_drivers(void) | 139 | static int __init scc_init_drivers(void) |
140 | { | 140 | { |
141 | int error; | 141 | int error; |
142 | 142 | ||
@@ -172,7 +172,7 @@ static int scc_init_drivers(void) | |||
172 | /* ports[] array is indexed by line no (i.e. [0] for ttyS0, [1] for ttyS1). | 172 | /* ports[] array is indexed by line no (i.e. [0] for ttyS0, [1] for ttyS1). |
173 | */ | 173 | */ |
174 | 174 | ||
175 | static void scc_init_portstructs(void) | 175 | static void __init scc_init_portstructs(void) |
176 | { | 176 | { |
177 | struct scc_port *port; | 177 | struct scc_port *port; |
178 | int i; | 178 | int i; |
@@ -195,7 +195,7 @@ static void scc_init_portstructs(void) | |||
195 | 195 | ||
196 | 196 | ||
197 | #ifdef CONFIG_MVME147_SCC | 197 | #ifdef CONFIG_MVME147_SCC |
198 | static int mvme147_scc_init(void) | 198 | static int __init mvme147_scc_init(void) |
199 | { | 199 | { |
200 | struct scc_port *port; | 200 | struct scc_port *port; |
201 | int error; | 201 | int error; |
@@ -298,7 +298,7 @@ fail: | |||
298 | 298 | ||
299 | 299 | ||
300 | #ifdef CONFIG_MVME162_SCC | 300 | #ifdef CONFIG_MVME162_SCC |
301 | static int mvme162_scc_init(void) | 301 | static int __init mvme162_scc_init(void) |
302 | { | 302 | { |
303 | struct scc_port *port; | 303 | struct scc_port *port; |
304 | int error; | 304 | int error; |
@@ -404,7 +404,7 @@ fail: | |||
404 | 404 | ||
405 | 405 | ||
406 | #ifdef CONFIG_BVME6000_SCC | 406 | #ifdef CONFIG_BVME6000_SCC |
407 | static int bvme6000_scc_init(void) | 407 | static int __init bvme6000_scc_init(void) |
408 | { | 408 | { |
409 | struct scc_port *port; | 409 | struct scc_port *port; |
410 | int error; | 410 | int error; |
@@ -503,7 +503,7 @@ fail_free_b_rx: | |||
503 | #endif | 503 | #endif |
504 | 504 | ||
505 | 505 | ||
506 | static int vme_scc_init(void) | 506 | static int __init vme_scc_init(void) |
507 | { | 507 | { |
508 | int res = -ENODEV; | 508 | int res = -ENODEV; |
509 | 509 | ||