<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>