Skip to content

Commit

Permalink
treewide: Fix typo
Browse files Browse the repository at this point in the history
Found by compliance check.

Signed-off-by: Chaitanya Tata <[email protected]>
  • Loading branch information
krish2718 committed Dec 17, 2024
1 parent 377e240 commit 4e36351
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion samples/bluetooth/throughput/src/cmds.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ static int default_cmd(const struct shell *shell, size_t argc,
}

if (argc == 2) {
shell_error(shell, "Uknown argument: %s", argv[1]);
shell_error(shell, "Unknown argument: %s", argv[1]);
return -EINVAL;
}

Expand Down
2 changes: 1 addition & 1 deletion samples/cellular/modem_shell/src/link/link_settings.c
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ int link_sett_save_defcontauth_prot(int auth_prot)
err = link_shell_pdn_auth_prot_to_pdn_lib_method_map(auth_prot,
&method);
if (err) {
mosh_error("Uknown auth protocol %d", auth_prot);
mosh_error("Unknown auth protocol %d", auth_prot);
return -EINVAL;
}

Expand Down
10 changes: 5 additions & 5 deletions samples/peripheral/radio_test/src/radio_cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ static int cmd_data_rate_set(const struct shell *shell, size_t argc,
}

if (argc == 2) {
shell_error(shell, "Uknown argument: %s", argv[1]);
shell_error(shell, "Unknown argument: %s", argv[1]);
return -EINVAL;
}

Expand Down Expand Up @@ -418,7 +418,7 @@ static int cmd_output_power_set(const struct shell *shell, size_t argc,
}

if (argc == 2) {
shell_error(shell, "Uknown argument: %s", argv[1]);
shell_error(shell, "Unknown argument: %s", argv[1]);
return -EINVAL;
}

Expand All @@ -439,7 +439,7 @@ static int cmd_transmit_pattern_set(const struct shell *shell, size_t argc,
}

if (argc == 2) {
shell_error(shell, "Uknown argument: %s.", argv[1]);
shell_error(shell, "Unknown argument: %s.", argv[1]);
return -EINVAL;
}

Expand Down Expand Up @@ -1173,7 +1173,7 @@ static int cmd_fem(const struct shell *shell, size_t argc, char **argv)
}

if (argc == 2) {
shell_error(shell, "Uknown argument: %s.", argv[1]);
shell_error(shell, "Unknown argument: %s.", argv[1]);
return -EINVAL;
}

Expand Down Expand Up @@ -1220,7 +1220,7 @@ static int cmd_fem_antenna_select(const struct shell *shell, size_t argc,
}

if (argc == 2) {
shell_error(shell, "Uknown argument: %s.", argv[1]);
shell_error(shell, "Unknown argument: %s.", argv[1]);
return -EINVAL;
}

Expand Down
10 changes: 5 additions & 5 deletions samples/wifi/radio_test/single_domain/src/radio_cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ static int cmd_data_rate_set(const struct shell *shell, size_t argc,
}

if (argc == 2) {
shell_error(shell, "Uknown argument: %s", argv[1]);
shell_error(shell, "Unknown argument: %s", argv[1]);
return -EINVAL;
}

Expand Down Expand Up @@ -418,7 +418,7 @@ static int cmd_output_power_set(const struct shell *shell, size_t argc,
}

if (argc == 2) {
shell_error(shell, "Uknown argument: %s", argv[1]);
shell_error(shell, "Unknown argument: %s", argv[1]);
return -EINVAL;
}

Expand All @@ -439,7 +439,7 @@ static int cmd_transmit_pattern_set(const struct shell *shell, size_t argc,
}

if (argc == 2) {
shell_error(shell, "Uknown argument: %s.", argv[1]);
shell_error(shell, "Unknown argument: %s.", argv[1]);
return -EINVAL;
}

Expand Down Expand Up @@ -1173,7 +1173,7 @@ static int cmd_fem(const struct shell *shell, size_t argc, char **argv)
}

if (argc == 2) {
shell_error(shell, "Uknown argument: %s.", argv[1]);
shell_error(shell, "Unknown argument: %s.", argv[1]);
return -EINVAL;
}

Expand Down Expand Up @@ -1220,7 +1220,7 @@ static int cmd_fem_antenna_select(const struct shell *shell, size_t argc,
}

if (argc == 2) {
shell_error(shell, "Uknown argument: %s.", argv[1]);
shell_error(shell, "Unknown argument: %s.", argv[1]);
return -EINVAL;
}

Expand Down

0 comments on commit 4e36351

Please sign in to comment.