commit | 31fe92a1fe6f6577ade98acbc1483da9ea1a1f5f | [log] [tgz] |
---|---|---|
author | hong.liu <hong.liu@mobiletek.cn> | Thu Sep 05 10:08:43 2024 +0000 |
committer | Gerrit Code Review <gerrit@aab99bac79d8> | Thu Sep 05 10:08:43 2024 +0000 |
tree | 59768fe139d15a0294f258f570e3b426ad126dfc | |
parent | b041040e046e630819d0172efc4b27bfcfe5337a [diff] | |
parent | 575f431d9b5402324f77a92f319d68a7b2285642 [diff] |
Merge "[Bugfix][T106][bug-view-134] Add log for sending buffer fill issue"
diff --git a/cap/zx297520v3/zxic_code/zxic_source/linux-5.10/drivers/tty/tty_io.c b/cap/zx297520v3/zxic_code/zxic_source/linux-5.10/drivers/tty/tty_io.c old mode 100644 new mode 100755 index 669aef7..8591d06 --- a/cap/zx297520v3/zxic_code/zxic_source/linux-5.10/drivers/tty/tty_io.c +++ b/cap/zx297520v3/zxic_code/zxic_source/linux-5.10/drivers/tty/tty_io.c
@@ -771,6 +771,12 @@ if (tty->stopped) return; tty->stopped = 1; + + //l.yang add log for bug T106-134 start + if(tty->index == 1){ + printk("__stop_tty got stop cmd\n"); + } + //l.yang add log for bug T106-134 end if (tty->ops->stop) tty->ops->stop(tty); }