Skip to content

Commit f1ec92a

Browse files
Chen Nigregkh
authored andcommitted
tty: hvc: convert comma to semicolon
Replace a comma between expression statements by a semicolon. Signed-off-by: Chen Ni <nichen@iscas.ac.cn> Acked-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20240903023001.491055-1-nichen@iscas.ac.cn Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 1c70238 commit f1ec92a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/tty/hvc/hvsi_lib.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ int hvsilib_write_mctrl(struct hvsi_priv *pv, int dtr)
303303
pr_devel("HVSI@%x: %s DTR...\n", pv->termno,
304304
dtr ? "Setting" : "Clearing");
305305

306-
ctrl.hdr.type = VS_CONTROL_PACKET_HEADER,
306+
ctrl.hdr.type = VS_CONTROL_PACKET_HEADER;
307307
ctrl.hdr.len = sizeof(struct hvsi_control);
308308
ctrl.verb = cpu_to_be16(VSV_SET_MODEM_CTL);
309309
ctrl.mask = cpu_to_be32(HVSI_TSDTR);

0 commit comments

Comments
 (0)