Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 182194
b: refs/heads/master
c: eb054e3
h: refs/heads/master
v: v3
  • Loading branch information
Peter Huewe authored and Geert Uytterhoeven committed Feb 27, 2010
1 parent 4c15f92 commit f2ca979
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 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: f351d4bb3ce5a86f75cf297e38f87c4e437593d7
refs/heads/master: eb054e3b3d531e311e9a34b902fe29247b00f724
12 changes: 6 additions & 6 deletions trunk/drivers/char/vme_scc.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ static const struct tty_port_operations scc_port_ops = {
* vme_scc_init() and support functions
*---------------------------------------------------------------------------*/

static int scc_init_drivers(void)
static int __init scc_init_drivers(void)
{
int error;

Expand Down Expand Up @@ -172,7 +172,7 @@ static int scc_init_drivers(void)
/* ports[] array is indexed by line no (i.e. [0] for ttyS0, [1] for ttyS1).
*/

static void scc_init_portstructs(void)
static void __init scc_init_portstructs(void)
{
struct scc_port *port;
int i;
Expand All @@ -195,7 +195,7 @@ static void scc_init_portstructs(void)


#ifdef CONFIG_MVME147_SCC
static int mvme147_scc_init(void)
static int __init mvme147_scc_init(void)
{
struct scc_port *port;
int error;
Expand Down Expand Up @@ -298,7 +298,7 @@ static int mvme147_scc_init(void)


#ifdef CONFIG_MVME162_SCC
static int mvme162_scc_init(void)
static int __init mvme162_scc_init(void)
{
struct scc_port *port;
int error;
Expand Down Expand Up @@ -404,7 +404,7 @@ static int mvme162_scc_init(void)


#ifdef CONFIG_BVME6000_SCC
static int bvme6000_scc_init(void)
static int __init bvme6000_scc_init(void)
{
struct scc_port *port;
int error;
Expand Down Expand Up @@ -503,7 +503,7 @@ static int bvme6000_scc_init(void)
#endif


static int vme_scc_init(void)
static int __init vme_scc_init(void)
{
int res = -ENODEV;

Expand Down

0 comments on commit f2ca979

Please sign in to comment.