Commit 059fb823 authored by David Lechner's avatar David Lechner Committed by Marcel Holtmann

Bluetooth: hci_ll: remove \n from kernel messages

The bt_* printk macros include a \n already, so we don't need extra ones
here.
Signed-off-by: default avatarDavid Lechner <david@lechnology.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent b4cdaba2
...@@ -628,11 +628,11 @@ static int download_firmware(struct ll_device *lldev) ...@@ -628,11 +628,11 @@ static int download_firmware(struct ll_device *lldev)
break; break;
} }
if (cmd->prefix != 1) if (cmd->prefix != 1)
bt_dev_dbg(lldev->hu.hdev, "command type %d\n", cmd->prefix); bt_dev_dbg(lldev->hu.hdev, "command type %d", cmd->prefix);
skb = __hci_cmd_sync(lldev->hu.hdev, cmd->opcode, cmd->plen, &cmd->speed, HCI_INIT_TIMEOUT); skb = __hci_cmd_sync(lldev->hu.hdev, cmd->opcode, cmd->plen, &cmd->speed, HCI_INIT_TIMEOUT);
if (IS_ERR(skb)) { if (IS_ERR(skb)) {
bt_dev_err(lldev->hu.hdev, "send command failed\n"); bt_dev_err(lldev->hu.hdev, "send command failed");
err = PTR_ERR(skb); err = PTR_ERR(skb);
goto out_rel_fw; goto out_rel_fw;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment