mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
slip: fix wrong SLIP6 ifdef-endif placing
SLIP6 have nothing to do with CSLIP so placing a block of SLIP6-related code within a CSLIP ifdef-endif block is incorrect. Signed-off-by: Ilya Matvejchikov <matvejchikov@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ff1817749f
commit
7686d1cc5e
1 changed files with 1 additions and 1 deletions
|
@ -182,10 +182,10 @@ static int sl_alloc_bufs(struct slip *sl, int mtu)
|
|||
#ifdef SL_INCLUDE_CSLIP
|
||||
cbuff = xchg(&sl->cbuff, cbuff);
|
||||
slcomp = xchg(&sl->slcomp, slcomp);
|
||||
#endif
|
||||
#ifdef CONFIG_SLIP_MODE_SLIP6
|
||||
sl->xdata = 0;
|
||||
sl->xbits = 0;
|
||||
#endif
|
||||
#endif
|
||||
spin_unlock_bh(&sl->lock);
|
||||
err = 0;
|
||||
|
|
Loading…
Reference in a new issue