Skip to content

Commit

Permalink
Bluetooth: ISO: Make bt_iso_remove_data_path static
Browse files Browse the repository at this point in the history
Make bt_iso_remove_data_path static as it is only used by iso.c

Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
  • Loading branch information
Thalley authored and nashif committed Oct 27, 2021
1 parent 6f09a69 commit f6e829a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion subsys/bluetooth/host/iso.c
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ void bt_iso_connected(struct bt_conn *iso)
}
}

void bt_iso_remove_data_path(struct bt_conn *iso)
static void bt_iso_remove_data_path(struct bt_conn *iso)
{
BT_DBG("%p", iso);

Expand Down
2 changes: 0 additions & 2 deletions subsys/bluetooth/host/iso_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -149,5 +149,3 @@ void bt_iso_chan_set_state(struct bt_iso_chan *chan, uint8_t state);

/* Process incoming data for a connection */
void bt_iso_recv(struct bt_conn *iso, struct net_buf *buf, uint8_t flags);

void bt_iso_remove_data_path(struct bt_conn *iso);

0 comments on commit f6e829a

Please sign in to comment.