spelling: acquire

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 12:40:37 -05:00
parent 572925d9fb
commit 80421e092f
4 changed files with 5 additions and 5 deletions

View file

@ -239,7 +239,7 @@ bool pmic_enable_battery_measure(void) {
bool pmic_disable_battery_measure(void) {
bool result = prv_set_mon_config_register(0);
// Releases the lock that was previously aquired in pmic_enable_battery_measure.
// Releases the lock that was previously acquired in pmic_enable_battery_measure.
prv_mon_config_unlock();
return result;

View file

@ -261,7 +261,7 @@ bool pmic_enable_battery_measure(void) {
bool pmic_disable_battery_measure(void) {
bool result = prv_set_mon_config_register(0);
// Releases the lock that was previously aquired in pmic_enable_battery_measure.
// Releases the lock that was previously acquired in pmic_enable_battery_measure.
prv_mon_config_unlock();
return result;

View file

@ -359,7 +359,7 @@ bool pmic_enable_battery_measure(void) {
bool pmic_disable_battery_measure(void) {
bool result = prv_set_mon_config_register(0);
// Releases the lock that was previously aquired in pmic_enable_battery_measure.
// Releases the lock that was previously acquired in pmic_enable_battery_measure.
prv_mon_config_unlock();
return result;

View file

@ -93,7 +93,7 @@ bool bt_persistent_storage_has_ble_ancs_bonding(void);
bool bt_persistent_storage_has_active_ble_gateway_bonding(void);
//! Runs the callback for each BLE pairing
//! The callback is NOT allowed to aquire the bt_lock() (or we could deadlock).
//! The callback is NOT allowed to acquire the bt_lock() (or we could deadlock).
void bt_persistent_storage_for_each_ble_pairing(BtPersistBondingDBEachBLE cb, void *context);
//! Registers all the existing BLE bondings with the BT driver lib.
@ -125,7 +125,7 @@ BTBondingID bt_persistent_storage_get_bt_classic_pairing_by_addr(BTDeviceAddress
bool bt_persistent_storage_has_active_bt_classic_gateway_bonding(void);
//! Runs the callback for each BT Classic pairing
//! The callback is NOT allowed to aquire the bt_lock() (or we could deadlock).
//! The callback is NOT allowed to acquire the bt_lock() (or we could deadlock).
void bt_persistent_storage_for_each_bt_classic_pairing(BtPersistBondingDBEachBTClassic cb,
void *context);