commit | 575f431d9b5402324f77a92f319d68a7b2285642 | [log] [tgz] |
---|---|---|
author | l.yang <l.yang@mobiletek.cn> | Thu Sep 05 10:25:58 2024 +0800 |
committer | l.yang@mobiletek.cn <l.yang@mobiletek.cn> | Thu Sep 05 02:30:12 2024 +0000 |
tree | 790cd5d140e42ab5eff9a45b7122bed13435ef08 | |
parent | 5c9ccc429c066ca766eebb8048d325f83f91128f [diff] |
[Bugfix][T106][bug-view-134] Add log for sending buffer fill issue Only Configure: NO Affected branch: master Affected module: system Is it affected on both ZXIC and MTK:only ZXIC Self-test: Yes Doc Update:No Change-Id: Ifafcc4478d609c0063b1d1d8a6e5c5100cf6fd3a
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); }