Remove error reporting from ble utility functions that never error

This commit is contained in:
Chris Andreae
2023-12-18 23:08:12 +09:00
committed by Pete Johanson
parent b8cb407351
commit 604c95118e
3 changed files with 8 additions and 10 deletions

View File

@@ -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);