diff options
author | Chris Andreae <[email protected]> | 2023-12-18 23:08:12 +0900 |
---|---|---|
committer | Pete Johanson <[email protected]> | 2024-01-05 12:16:38 -0800 |
commit | 604c95118e36764c9f4e6a3bdd9a1a325f2a1388 (patch) | |
tree | b85c8640d574a660be3c88e0766c33f9d1d860f6 /app/include | |
parent | b8cb4073510201c0327ee05a28b3ebf54adf3512 (diff) | |
download | zmk-604c95118e36764c9f4e6a3bdd9a1a325f2a1388.tar.gz zmk-604c95118e36764c9f4e6a3bdd9a1a325f2a1388.zip |
Remove error reporting from ble utility functions that never error
Diffstat (limited to 'app/include')
-rw-r--r-- | app/include/zmk/ble.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/include/zmk/ble.h b/app/include/zmk/ble.h index 417e490c11..773323c1cf 100644 --- a/app/include/zmk/ble.h +++ b/app/include/zmk/ble.h @@ -20,11 +20,11 @@ #define ZMK_BLE_PROFILE_COUNT CONFIG_BT_MAX_PAIRED #endif -int zmk_ble_clear_bonds(void); +void zmk_ble_clear_bonds(void); int zmk_ble_prof_next(void); int zmk_ble_prof_prev(void); int zmk_ble_prof_select(uint8_t index); -int zmk_ble_clear_all_bonds(void); +void zmk_ble_clear_all_bonds(void); int zmk_ble_prof_disconnect(uint8_t index); int zmk_ble_active_profile_index(void); |