Bluetooth: hci_raw: Fix misleading documentation for bt_send()

The documentation for the HCI raw interface was incorrectly talking about
the need to define buffer pools, when in fact the hci_raw module provides
the necessary API to perform buffer allocation.

Signed-off-by: Johan Hedberg <johan.hedberg@silabs.com>
This commit is contained in:
Johan Hedberg 2025-04-25 13:22:53 +03:00 committed by Benjamin Cabé
commit 5d6d876567

View file

@ -29,10 +29,10 @@ extern "C" {
/** @brief Send packet to the Bluetooth controller
*
* Send packet to the Bluetooth controller. Caller needs to
* implement netbuf pool.
* Send packet to the Bluetooth controller. The buffers should be allocated using
* bt_buf_get_tx().
*
* @param buf netbuf packet to be send
* @param buf HCI packet to be sent.
*
* @return Zero on success or (negative) error code otherwise.
*/