Skip to content

Commit f9ba776

Browse files
XenuIsWatchingMaureenHelm
authored andcommitted
drivers: i3c: shell: fix typos for enec/disec/rstact errors
Fix typos for enec/disec/rstact typos. Signed-off-by: Ryan McClelland <[email protected]>
1 parent f17b155 commit f9ba776

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

drivers/i3c/i3c_shell.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -1080,7 +1080,7 @@ static int cmd_i3c_ccc_rstact(const struct shell *sh, size_t argc, char **argv)
10801080
}
10811081

10821082
if (ret < 0) {
1083-
shell_error(sh, "I3C: unable to send CCC RSTACT BC.");
1083+
shell_error(sh, "I3C: unable to send CCC RSTACT.");
10841084
return ret;
10851085
}
10861086

@@ -1133,7 +1133,7 @@ static int cmd_i3c_ccc_disec_bc(const struct shell *sh, size_t argc, char **argv
11331133

11341134
ret = i3c_ccc_do_events_all_set(dev, false, &events);
11351135
if (ret < 0) {
1136-
shell_error(sh, "I3C: unable to send CCC ENEC BC.");
1136+
shell_error(sh, "I3C: unable to send CCC DISEC BC.");
11371137
return ret;
11381138
}
11391139

@@ -1157,7 +1157,7 @@ static int cmd_i3c_ccc_enec(const struct shell *sh, size_t argc, char **argv)
11571157

11581158
ret = i3c_ccc_do_events_set(desc, true, &events);
11591159
if (ret < 0) {
1160-
shell_error(sh, "I3C: unable to send CCC ENEC BC.");
1160+
shell_error(sh, "I3C: unable to send CCC ENEC.");
11611161
return ret;
11621162
}
11631163

@@ -1181,7 +1181,7 @@ static int cmd_i3c_ccc_disec(const struct shell *sh, size_t argc, char **argv)
11811181

11821182
ret = i3c_ccc_do_events_set(desc, false, &events);
11831183
if (ret < 0) {
1184-
shell_error(sh, "I3C: unable to send CCC ENEC BC.");
1184+
shell_error(sh, "I3C: unable to send CCC DISEC.");
11851185
return ret;
11861186
}
11871187

0 commit comments

Comments
 (0)