Bluetooth: ISO: Rename bt_iso_cig_create_param
Renames the struct from bt_iso_cig_create_param to bt_iso_cig_param as the same struct can, without modification, be used to update the CIG as well (function to support that will come in a later commit). Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
This commit is contained in:
parent
3f345132e0
commit
19c032ed78
5 changed files with 9 additions and 8 deletions
|
@ -199,7 +199,7 @@ struct bt_iso_recv_info {
|
|||
/** Opaque type representing an Connected Isochronous Group (CIG). */
|
||||
struct bt_iso_cig;
|
||||
|
||||
struct bt_iso_cig_create_param {
|
||||
struct bt_iso_cig_param {
|
||||
/** @brief Array of pointers to CIS channels */
|
||||
struct bt_iso_chan **cis_channels;
|
||||
|
||||
|
@ -515,7 +515,7 @@ int bt_iso_server_register(struct bt_iso_server *server);
|
|||
*
|
||||
* @return 0 in case of success or negative value in case of error.
|
||||
*/
|
||||
int bt_iso_cig_create(const struct bt_iso_cig_create_param *param,
|
||||
int bt_iso_cig_create(const struct bt_iso_cig_param *param,
|
||||
struct bt_iso_cig **out_cig);
|
||||
|
||||
/** @brief Terminates a CIG as a central
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue