@@ -1932,7 +1932,7 @@ static void notify_disconnected(struct bt_conn *conn)
1932
1932
}
1933
1933
1934
1934
#if defined(CONFIG_BT_REMOTE_INFO )
1935
- void notify_remote_info (struct bt_conn * conn )
1935
+ void bt_conn_notify_remote_info (struct bt_conn * conn )
1936
1936
{
1937
1937
struct bt_conn_remote_info remote_info ;
1938
1938
int err ;
@@ -1957,7 +1957,7 @@ void notify_remote_info(struct bt_conn *conn)
1957
1957
}
1958
1958
#endif /* defined(CONFIG_BT_REMOTE_INFO) */
1959
1959
1960
- void notify_le_param_updated (struct bt_conn * conn )
1960
+ void bt_conn_notify_le_param_updated (struct bt_conn * conn )
1961
1961
{
1962
1962
/* If new connection parameters meet requirement of pending
1963
1963
* parameters don't send peripheral conn param request anymore on timeout
@@ -1988,7 +1988,7 @@ void notify_le_param_updated(struct bt_conn *conn)
1988
1988
}
1989
1989
1990
1990
#if defined(CONFIG_BT_USER_DATA_LEN_UPDATE )
1991
- void notify_le_data_len_updated (struct bt_conn * conn )
1991
+ void bt_conn_notify_le_data_len_updated (struct bt_conn * conn )
1992
1992
{
1993
1993
BT_CONN_CB_DYNAMIC_FOREACH (callback ) {
1994
1994
if (callback -> le_data_len_updated ) {
@@ -2005,7 +2005,7 @@ void notify_le_data_len_updated(struct bt_conn *conn)
2005
2005
#endif
2006
2006
2007
2007
#if defined(CONFIG_BT_USER_PHY_UPDATE )
2008
- void notify_le_phy_updated (struct bt_conn * conn )
2008
+ void bt_conn_notify_le_phy_updated (struct bt_conn * conn )
2009
2009
{
2010
2010
BT_CONN_CB_DYNAMIC_FOREACH (callback ) {
2011
2011
if (callback -> le_phy_updated ) {
@@ -2021,7 +2021,7 @@ void notify_le_phy_updated(struct bt_conn *conn)
2021
2021
}
2022
2022
#endif
2023
2023
2024
- bool le_param_req (struct bt_conn * conn , struct bt_le_conn_param * param )
2024
+ bool bt_conn_le_param_req (struct bt_conn * conn , struct bt_le_conn_param * param )
2025
2025
{
2026
2026
if (!bt_le_conn_params_valid (param )) {
2027
2027
return false;
@@ -2979,8 +2979,7 @@ static int bt_conn_get_tx_power_level(struct bt_conn *conn, uint8_t type,
2979
2979
}
2980
2980
2981
2981
#if defined(CONFIG_BT_TRANSMIT_POWER_CONTROL )
2982
- void notify_tx_power_report (struct bt_conn * conn ,
2983
- struct bt_conn_le_tx_power_report report )
2982
+ void bt_conn_notify_tx_power_report (struct bt_conn * conn , struct bt_conn_le_tx_power_report report )
2984
2983
{
2985
2984
BT_CONN_CB_DYNAMIC_FOREACH (callback ) {
2986
2985
if (callback -> tx_power_report ) {
@@ -3122,8 +3121,8 @@ int bt_conn_le_get_tx_power_level(struct bt_conn *conn,
3122
3121
}
3123
3122
3124
3123
#if defined(CONFIG_BT_PATH_LOSS_MONITORING )
3125
- void notify_path_loss_threshold_report (struct bt_conn * conn ,
3126
- struct bt_conn_le_path_loss_threshold_report report )
3124
+ void bt_conn_notify_path_loss_threshold_report (struct bt_conn * conn ,
3125
+ struct bt_conn_le_path_loss_threshold_report report )
3127
3126
{
3128
3127
BT_CONN_CB_DYNAMIC_FOREACH (callback ) {
3129
3128
if (callback -> path_loss_threshold_report ) {
@@ -3191,8 +3190,8 @@ int bt_conn_le_set_path_loss_mon_enable(struct bt_conn *conn, bool reporting_ena
3191
3190
#endif /* CONFIG_BT_PATH_LOSS_MONITORING */
3192
3191
3193
3192
#if defined(CONFIG_BT_SUBRATING )
3194
- void notify_subrate_change (struct bt_conn * conn ,
3195
- const struct bt_conn_le_subrate_changed params )
3193
+ void bt_conn_notify_subrate_change (struct bt_conn * conn ,
3194
+ const struct bt_conn_le_subrate_changed params )
3196
3195
{
3197
3196
BT_CONN_CB_DYNAMIC_FOREACH (callback ) {
3198
3197
if (callback -> subrate_changed ) {
@@ -3297,8 +3296,8 @@ int bt_conn_le_subrate_request(struct bt_conn *conn,
3297
3296
#endif /* CONFIG_BT_SUBRATING */
3298
3297
3299
3298
#if defined(CONFIG_BT_LE_EXTENDED_FEAT_SET )
3300
- void notify_read_all_remote_feat_complete (struct bt_conn * conn ,
3301
- struct bt_conn_le_read_all_remote_feat_complete * params )
3299
+ void bt_conn_notify_read_all_remote_feat_complete (struct bt_conn * conn ,
3300
+ struct bt_conn_le_read_all_remote_feat_complete * params )
3302
3301
{
3303
3302
BT_CONN_CB_DYNAMIC_FOREACH (callback ) {
3304
3303
if (callback -> read_all_remote_feat_complete != NULL ) {
@@ -3342,8 +3341,8 @@ int bt_conn_le_read_all_remote_features(struct bt_conn *conn, uint8_t pages_requ
3342
3341
#endif /* CONFIG_BT_LE_EXTENDED_FEAT_SET */
3343
3342
3344
3343
#if defined(CONFIG_BT_FRAME_SPACE_UPDATE )
3345
- void notify_frame_space_update_complete (struct bt_conn * conn ,
3346
- struct bt_conn_le_frame_space_updated * params )
3344
+ void bt_conn_notify_frame_space_update_complete (struct bt_conn * conn ,
3345
+ struct bt_conn_le_frame_space_updated * params )
3347
3346
{
3348
3347
if (IS_ENABLED (CONFIG_BT_CONN_DYNAMIC_CALLBACKS )) {
3349
3348
struct bt_conn_cb * callback ;
@@ -3414,8 +3413,8 @@ int bt_conn_le_frame_space_update(struct bt_conn *conn,
3414
3413
#endif /* CONFIG_BT_FRAME_SPACE_UPDATE */
3415
3414
3416
3415
#if defined(CONFIG_BT_CHANNEL_SOUNDING )
3417
- void notify_remote_cs_capabilities (struct bt_conn * conn , uint8_t status ,
3418
- struct bt_conn_le_cs_capabilities * params )
3416
+ void bt_conn_notify_remote_cs_capabilities (struct bt_conn * conn , uint8_t status ,
3417
+ struct bt_conn_le_cs_capabilities * params )
3419
3418
{
3420
3419
BT_CONN_CB_DYNAMIC_FOREACH (callback ) {
3421
3420
if (callback -> le_cs_read_remote_capabilities_complete ) {
@@ -3431,8 +3430,8 @@ void notify_remote_cs_capabilities(struct bt_conn *conn, uint8_t status,
3431
3430
}
3432
3431
}
3433
3432
3434
- void notify_remote_cs_fae_table (struct bt_conn * conn , uint8_t status ,
3435
- struct bt_conn_le_cs_fae_table * params )
3433
+ void bt_conn_notify_remote_cs_fae_table (struct bt_conn * conn , uint8_t status ,
3434
+ struct bt_conn_le_cs_fae_table * params )
3436
3435
{
3437
3436
BT_CONN_CB_DYNAMIC_FOREACH (callback ) {
3438
3437
if (callback -> le_cs_read_remote_fae_table_complete ) {
@@ -3448,8 +3447,8 @@ void notify_remote_cs_fae_table(struct bt_conn *conn, uint8_t status,
3448
3447
}
3449
3448
}
3450
3449
3451
- void notify_cs_config_created (struct bt_conn * conn , uint8_t status ,
3452
- struct bt_conn_le_cs_config * params )
3450
+ void bt_conn_notify_cs_config_created (struct bt_conn * conn , uint8_t status ,
3451
+ struct bt_conn_le_cs_config * params )
3453
3452
{
3454
3453
BT_CONN_CB_DYNAMIC_FOREACH (callback ) {
3455
3454
if (callback -> le_cs_config_complete ) {
@@ -3464,7 +3463,7 @@ void notify_cs_config_created(struct bt_conn *conn, uint8_t status,
3464
3463
}
3465
3464
}
3466
3465
3467
- void notify_cs_config_removed (struct bt_conn * conn , uint8_t config_id )
3466
+ void bt_conn_notify_cs_config_removed (struct bt_conn * conn , uint8_t config_id )
3468
3467
{
3469
3468
BT_CONN_CB_DYNAMIC_FOREACH (callback ) {
3470
3469
if (callback -> le_cs_config_removed ) {
@@ -3479,7 +3478,7 @@ void notify_cs_config_removed(struct bt_conn *conn, uint8_t config_id)
3479
3478
}
3480
3479
}
3481
3480
3482
- void notify_cs_security_enable_available (struct bt_conn * conn , uint8_t status )
3481
+ void bt_conn_notify_cs_security_enable_available (struct bt_conn * conn , uint8_t status )
3483
3482
{
3484
3483
BT_CONN_CB_DYNAMIC_FOREACH (callback ) {
3485
3484
if (callback -> le_cs_security_enable_complete ) {
@@ -3494,8 +3493,8 @@ void notify_cs_security_enable_available(struct bt_conn *conn, uint8_t status)
3494
3493
}
3495
3494
}
3496
3495
3497
- void notify_cs_procedure_enable_available (struct bt_conn * conn , uint8_t status ,
3498
- struct bt_conn_le_cs_procedure_enable_complete * params )
3496
+ void bt_conn_notify_cs_procedure_enable_available (struct bt_conn * conn , uint8_t status ,
3497
+ struct bt_conn_le_cs_procedure_enable_complete * params )
3499
3498
{
3500
3499
BT_CONN_CB_DYNAMIC_FOREACH (callback ) {
3501
3500
if (callback -> le_cs_procedure_enable_complete ) {
@@ -3510,7 +3509,8 @@ void notify_cs_procedure_enable_available(struct bt_conn *conn, uint8_t status,
3510
3509
}
3511
3510
}
3512
3511
3513
- void notify_cs_subevent_result (struct bt_conn * conn , struct bt_conn_le_cs_subevent_result * result )
3512
+ void bt_conn_notify_cs_subevent_result (struct bt_conn * conn ,
3513
+ struct bt_conn_le_cs_subevent_result * result )
3514
3514
{
3515
3515
BT_CONN_CB_DYNAMIC_FOREACH (callback ) {
3516
3516
if (callback -> le_cs_subevent_data_available ) {
0 commit comments