diff options
author | 2021-07-18 18:56:58 -0700 | |
---|---|---|
committer | 2021-07-18 18:56:58 -0700 | |
commit | 320424c7d44f54c18df9812fd7c45f6963524002 (patch) | |
tree | 5853aff866a321d476f5e4f2a3de5b5e90408580 /net/lapb/lapb_iface.c | |
parent | Input: joydev - prevent use of not validated data in JSIOCSBTNMAP ioctl (diff) | |
parent | Linux 5.13 (diff) | |
download | linux-dev-320424c7d44f54c18df9812fd7c45f6963524002.tar.xz linux-dev-320424c7d44f54c18df9812fd7c45f6963524002.zip |
Merge tag 'v5.13' into next
Sync up with the mainline to get the latest parport API.
Diffstat (limited to 'net/lapb/lapb_iface.c')
-rw-r--r-- | net/lapb/lapb_iface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/lapb/lapb_iface.c b/net/lapb/lapb_iface.c index 0511bbe4af7b..1078e14f1acf 100644 --- a/net/lapb/lapb_iface.c +++ b/net/lapb/lapb_iface.c @@ -122,8 +122,8 @@ static struct lapb_cb *lapb_create_cb(void) timer_setup(&lapb->t1timer, NULL, 0); timer_setup(&lapb->t2timer, NULL, 0); - lapb->t1timer_stop = true; - lapb->t2timer_stop = true; + lapb->t1timer_running = false; + lapb->t2timer_running = false; lapb->t1 = LAPB_DEFAULT_T1; lapb->t2 = LAPB_DEFAULT_T2; |