Skip to content

Commit 07994ab

Browse files
ndrs-pstnashif
authored andcommitted
bluetooth: fix typo in (common, crypto, services, shell)
Utilize a code spell-checking tool to scan for and correct spelling errors in all files within the subsys/bluetooth/(common, crypto, service, shell). Signed-off-by: Pisit Sawangvonganan <[email protected]>
1 parent 0df7fd6 commit 07994ab

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

subsys/bluetooth/common/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ config BT_HCI_VS_FATAL_ERROR
198198
bool "Allow vendor specific HCI event Zephyr Fatal Error"
199199
depends on BT_HCI_VS
200200
help
201-
Enable emiting HCI Vendor-Specific events for system and Controller
201+
Enable emitting HCI Vendor-Specific events for system and Controller
202202
errors that are unrecoverable.
203203

204204
config BT_HCI_VS_EXT_DETECT

subsys/bluetooth/crypto/bt_crypto.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ int bt_crypto_h6(const uint8_t w[16], const uint8_t key_id[4], uint8_t res[16]);
127127
int bt_crypto_h7(const uint8_t salt[16], const uint8_t w[16], uint8_t res[16]);
128128

129129
/**
130-
* @brief Cryptograhic Toolbox function h8
130+
* @brief Cryptographic Toolbox function h8
131131
*
132132
* Defined in Core Vol. 6, part E 1.1.1.
133133
*

subsys/bluetooth/services/ots/ots_dir_list.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ static size_t dir_list_object_record_size(const struct bt_gatt_ots_object *obj)
3333
/* ID */
3434
len += BT_OTS_OBJ_ID_SIZE;
3535

36-
/* Name length (single octect is used for the name length) */
36+
/* Name length (single octet is used for the name length) */
3737
len += sizeof(uint8_t);
3838

3939
/* Name */

subsys/bluetooth/shell/bt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2897,7 +2897,7 @@ static int cmd_read_local_tx_power(const struct shell *sh, size_t argc, char *ar
28972897
}
28982898
err = bt_conn_le_get_tx_power_level(default_conn, &tx_power_level);
28992899
if (err) {
2900-
shell_print(sh, "Commad returned error error %d", err);
2900+
shell_print(sh, "Command returned error error %d", err);
29012901
return err;
29022902
}
29032903
if (tx_power_level.current_level == unachievable_current_level) {

0 commit comments

Comments
 (0)