<div dir="ltr">Don't flush the tty device input queue when setting device attribute.<br><br>Rationale:<br>  * microcom: The tty device might already have a _good enough_ termios<br>  Â  to read data from. Flushing the input queue just to set the terminal<br>  Â  attribute would result in data loss in this case.<br>  * stty: This command doesn't read nor write data to the tty device, so<br>  Â  flushing the input queue doesn't make sense here. The program<br>  Â  actually talking to the tty should decide if it wants the tty<br>  Â  flushed or not.<br>  Â  Note: other implementations of stty also uses TCSANOW (bsd) or<br>  Â  TCSADRAIN (coreutils), so I think this assumption is fine.</div>