Messages in this thread Patch in this message |  | | From | YourName <> | Subject | [PATCH] drivers: bluetooth: btintel.c: fixed format issue. | Date | Sun, 9 Aug 2020 00:25:32 -0700 |
| |
From: argoz1701 <argoz1701@gmail.com>
Fixed a coding style issue.
Signed-off-by: Daniel West <argoz1701@gmail.com> --- drivers/bluetooth/btintel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/bluetooth/btintel.c b/drivers/bluetooth/btintel.c index 5fa5be3c5598..d0512506fa05 100644 --- a/drivers/bluetooth/btintel.c +++ b/drivers/bluetooth/btintel.c @@ -29,7 +29,7 @@ int btintel_check_bdaddr(struct hci_dev *hdev) HCI_INIT_TIMEOUT); if (IS_ERR(skb)) { int err = PTR_ERR(skb); - bt_dev_err(hdev, "Reading Intel device address failed (%d)", + bt_dev_err(hdev, "Reading Intel device address failed (%d)", err); return err; } -- 2.25.1
|  |