mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 10:30:54 +07:00
slip: remove unused 'line' field from the 'slip' structure
Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
fd99beb937
commit
a9481a38b1
@ -807,7 +807,6 @@ static int slip_open(struct tty_struct *tty)
|
||||
|
||||
sl->tty = tty;
|
||||
tty->disc_data = sl;
|
||||
sl->line = tty_devnum(tty);
|
||||
sl->pid = current->pid;
|
||||
|
||||
if (!test_bit(SLF_INUSE, &sl->flags)) {
|
||||
@ -874,8 +873,6 @@ static void slip_close(struct tty_struct *tty)
|
||||
|
||||
tty->disc_data = NULL;
|
||||
sl->tty = NULL;
|
||||
if (!sl->leased)
|
||||
sl->line = 0;
|
||||
|
||||
/* VSV = very important to remove timers */
|
||||
#ifdef CONFIG_SLIP_SMART
|
||||
|
@ -90,7 +90,6 @@ struct slip {
|
||||
|
||||
unsigned char mode; /* SLIP mode */
|
||||
unsigned char leased;
|
||||
dev_t line;
|
||||
pid_t pid;
|
||||
#define SL_MODE_SLIP 0
|
||||
#define SL_MODE_CSLIP 1
|
||||
|
Loading…
Reference in New Issue
Block a user