Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 3382
b: refs/heads/master
c: 4b84972
h: refs/heads/master
v: v3
  • Loading branch information
Adrian Bunk authored and Linus Torvalds committed Jun 25, 2005
1 parent c3f8d78 commit 77cb689
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: 9a5f04bf798254390f89445ecf0b6f4c70ddc1f8
refs/heads/master: 4b8497276a96928bcb5947cc44e61f8b69fe66ac
12 changes: 6 additions & 6 deletions trunk/drivers/char/isicom.c
Original file line number Diff line number Diff line change
Expand Up @@ -1756,7 +1756,7 @@ static void isicom_flush_buffer(struct tty_struct * tty)
}


static int __init register_ioregion(void)
static int __devinit register_ioregion(void)
{
int count, done=0;
for (count=0; count < BOARD_COUNT; count++ ) {
Expand All @@ -1771,7 +1771,7 @@ static int __init register_ioregion(void)
return done;
}

static void __exit unregister_ioregion(void)
static void unregister_ioregion(void)
{
int count;
for (count=0; count < BOARD_COUNT; count++ )
Expand Down Expand Up @@ -1803,7 +1803,7 @@ static struct tty_operations isicom_ops = {
.tiocmset = isicom_tiocmset,
};

static int __init register_drivers(void)
static int __devinit register_drivers(void)
{
int error;

Expand Down Expand Up @@ -1834,15 +1834,15 @@ static int __init register_drivers(void)
return 0;
}

static void __exit unregister_drivers(void)
static void unregister_drivers(void)
{
int error = tty_unregister_driver(isicom_normal);
if (error)
printk(KERN_DEBUG "ISICOM: couldn't unregister normal driver error=%d.\n",error);
put_tty_driver(isicom_normal);
}

static int __init register_isr(void)
static int __devinit register_isr(void)
{
int count, done=0;
unsigned long irqflags;
Expand Down Expand Up @@ -1883,7 +1883,7 @@ static void __exit unregister_isr(void)
}
}

static int __init isicom_init(void)
static int __devinit isicom_init(void)
{
int card, channel, base;
struct isi_port * port;
Expand Down

0 comments on commit 77cb689

Please sign in to comment.