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 <[email protected]> Acked-by: Michael Ellerman <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 1c70238 commit f1ec92a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)