diff options
Diffstat (limited to 'drivers/net/slip.c')
| -rw-r--r-- | drivers/net/slip.c | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/slip.c b/drivers/net/slip.c index 86718d35839..584809c656d 100644 --- a/drivers/net/slip.c +++ b/drivers/net/slip.c @@ -856,7 +856,9 @@ static int slip_open(struct tty_struct *tty)  	/* Done.  We have linked the TTY line to a channel. */  	rtnl_unlock();  	tty->receive_room = 65536;	/* We don't flow control */ -	return sl->dev->base_addr; + +	/* TTY layer expects 0 on success */ +	return 0;  err_free_bufs:  	sl_free_bufs(sl);  |