diff options
author | 2025-01-15 19:36:37 -0800 | |
---|---|---|
committer | 2025-03-25 12:26:41 -0400 | |
commit | 50bda84e696a0d32c42d343c5b4c9de064018181 (patch) | |
tree | 7105994c12a50eaf377ff56a33a089a94af4bf10 | |
parent | net: phy: dp83822: fix transmit amplitude if CONFIG_OF_MDIO not defined (diff) | |
download | wireguard-linux-50bda84e696a0d32c42d343c5b4c9de064018181.tar.xz wireguard-linux-50bda84e696a0d32c42d343c5b4c9de064018181.zip |
Bluetooth: btusb: mediatek: Add err code to btusb claim iso printout
Add the error code to the message "Failed to claim iso
interface". That allows us to know which error case
usb_driver_claim_interface() hit.
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
-rw-r--r-- | drivers/bluetooth/btusb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index a0fc465458b2..5b7dec28de8b 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -2688,7 +2688,7 @@ static void btusb_mtk_claim_iso_intf(struct btusb_data *data) device_unlock(&btmtk_data->isopkt_intf->dev); if (err < 0) { btmtk_data->isopkt_intf = NULL; - bt_dev_err(data->hdev, "Failed to claim iso interface"); + bt_dev_err(data->hdev, "Failed to claim iso interface: %d", err); return; } |