diff options
author | Tony Lindgren <tony@atomide.com> | 2021-05-18 09:45:08 +0300 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2021-05-18 09:45:08 +0300 |
commit | 85ebe5aeef9b0bf4c91ff91652b32f9c54f71d34 (patch) | |
tree | dc6b176404218efac28a4a1a0c240cb36f1e9173 /net/lapb/lapb_iface.c | |
parent | e9aa9c75c58e2e16be16ec2b5db5e14804d07213 (diff) | |
parent | 040ab72ee10ea88e1883ad143b3e2b77596abc31 (diff) |
Merge branch 'fixes-rc1' into fixes
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; |