aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth
diff options
context:
space:
mode:
authorSean Wang <sean.wang@mediatek.com>2019-04-18 17:07:59 +0800
committerMarcel Holtmann <marcel@holtmann.org>2019-04-23 18:36:20 +0200
commite1052fb282a4e44d990e857c18edbd943d9ecdaf (patch)
tree99a757689a7f125764447581bb37ccdce76ed64f /drivers/bluetooth
parentBluetooth: hci_h5: fix spelling mistake "sliped" -> "slipped" (diff)
downloadlinux-dev-e1052fb282a4e44d990e857c18edbd943d9ecdaf.tar.xz
linux-dev-e1052fb282a4e44d990e857c18edbd943d9ecdaf.zip
Bluetooth: btmtksdio: Drop newline with bt_dev logging macros
bt_dev logging macros already include a newline at each output so drop these unnecessary additional newlines in the driver. Signed-off-by: Sean Wang <sean.wang@mediatek.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r--drivers/bluetooth/btmtksdio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/bluetooth/btmtksdio.c b/drivers/bluetooth/btmtksdio.c
index 7d0d1cb93b0e..681e3e34977e 100644
--- a/drivers/bluetooth/btmtksdio.c
+++ b/drivers/bluetooth/btmtksdio.c
@@ -487,15 +487,15 @@ static void btmtksdio_interrupt(struct sdio_func *func)
sdio_writel(func, int_status, MTK_REG_CHISR, NULL);
if (unlikely(!int_status))
- bt_dev_err(bdev->hdev, "CHISR is 0\n");
+ bt_dev_err(bdev->hdev, "CHISR is 0");
if (int_status & FW_OWN_BACK_INT)
- bt_dev_dbg(bdev->hdev, "Get fw own back\n");
+ bt_dev_dbg(bdev->hdev, "Get fw own back");
if (int_status & TX_EMPTY)
schedule_work(&bdev->tx_work);
else if (unlikely(int_status & TX_FIFO_OVERFLOW))
- bt_dev_warn(bdev->hdev, "Tx fifo overflow\n");
+ bt_dev_warn(bdev->hdev, "Tx fifo overflow");
if (int_status & RX_DONE_INT) {
rx_size = (int_status & RX_PKT_LEN) >> 16;