Skip to content

Commit 48a6dcd

Browse files
Chen Nialexandrebelloni
authored andcommitted
i3c: master: svc: Convert comma to semicolon
Replace a comma between expression statements by a semicolon. Signed-off-by: Chen Ni <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Alexandre Belloni <[email protected]>
1 parent 4642f7e commit 48a6dcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/i3c/master/svc-i3c-master.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1351,7 +1351,7 @@ static int svc_i3c_master_send_direct_ccc_cmd(struct svc_i3c_master *master,
13511351
cmd->addr = ccc->dests[0].addr;
13521352
cmd->rnw = ccc->rnw;
13531353
cmd->in = ccc->rnw ? ccc->dests[0].payload.data : NULL;
1354-
cmd->out = ccc->rnw ? NULL : ccc->dests[0].payload.data,
1354+
cmd->out = ccc->rnw ? NULL : ccc->dests[0].payload.data;
13551355
cmd->len = xfer_len;
13561356
cmd->actual_len = actual_len;
13571357
cmd->continued = false;

0 commit comments

Comments
 (0)