aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDouglas Anderson <dianders@chromium.org>2025-01-15 19:36:37 -0800
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2025-03-25 12:26:41 -0400
commit50bda84e696a0d32c42d343c5b4c9de064018181 (patch)
tree7105994c12a50eaf377ff56a33a089a94af4bf10
parentnet: phy: dp83822: fix transmit amplitude if CONFIG_OF_MDIO not defined (diff)
downloadwireguard-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.c2
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;
}