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);
 }