@@ -114,47 +114,6 @@ void bt_iso_disconnected(struct bt_conn *iso);
114
114
/* Notify ISO connected channels of security changed */
115
115
void bt_iso_security_changed (struct bt_conn * acl , uint8_t hci_status );
116
116
117
- /* Allocate ISO PDU */
118
- #if defined(CONFIG_NET_BUF_LOG )
119
- struct net_buf * bt_iso_create_pdu_timeout_debug (struct net_buf_pool * pool ,
120
- size_t reserve ,
121
- k_timeout_t timeout ,
122
- const char * func , int line );
123
- #define bt_iso_create_pdu_timeout (_pool , _reserve , _timeout ) \
124
- bt_iso_create_pdu_timeout_debug(_pool, _reserve, _timeout, \
125
- __func__, __LINE__)
126
-
127
- #define bt_iso_create_pdu (_pool , _reserve ) \
128
- bt_iso_create_pdu_timeout_debug(_pool, _reserve, K_FOREVER, \
129
- __func__, __LINE__)
130
- #else
131
- struct net_buf * bt_iso_create_pdu_timeout (struct net_buf_pool * pool ,
132
- size_t reserve , k_timeout_t timeout );
133
-
134
- #define bt_iso_create_pdu (_pool , _reserve ) \
135
- bt_iso_create_pdu_timeout(_pool, _reserve, K_FOREVER)
136
- #endif
137
-
138
- /* Allocate ISO Fragment */
139
- #if defined(CONFIG_NET_BUF_LOG )
140
- struct net_buf * bt_iso_create_frag_timeout_debug (size_t reserve ,
141
- k_timeout_t timeout ,
142
- const char * func , int line );
143
-
144
- #define bt_iso_create_frag_timeout (_reserve , _timeout ) \
145
- bt_iso_create_frag_timeout_debug(_reserve, _timeout, \
146
- __func__, __LINE__)
147
-
148
- #define bt_iso_create_frag (_reserve ) \
149
- bt_iso_create_frag_timeout_debug(_reserve, K_FOREVER, \
150
- __func__, __LINE__)
151
- #else
152
- struct net_buf * bt_iso_create_frag_timeout (size_t reserve , k_timeout_t timeout );
153
-
154
- #define bt_iso_create_frag (_reserve ) \
155
- bt_iso_create_frag_timeout(_reserve, K_FOREVER)
156
- #endif
157
-
158
117
#if defined(CONFIG_BT_ISO_LOG_LEVEL_DBG )
159
118
void bt_iso_chan_set_state_debug (struct bt_iso_chan * chan ,
160
119
enum bt_iso_state state ,
0 commit comments