From: Sean Wang Date: Sun, 9 Jan 2022 19:24:01 +0000 (+0800) Subject: Bluetooth: btmtksdio: clean up inconsistent error message in btmtksdio_mtk_reg_read X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=386f626adda81d224f7229e31ebdefcd616b2ff2;p=linux.git Bluetooth: btmtksdio: clean up inconsistent error message in btmtksdio_mtk_reg_read Have "..reg (%d)" to be consistent with the other similar error messages. Signed-off-by: Sean Wang Signed-off-by: Marcel Holtmann --- diff --git a/drivers/bluetooth/btmtksdio.c b/drivers/bluetooth/btmtksdio.c index d82ba9d71fb8d..25fb9c79b1f42 100644 --- a/drivers/bluetooth/btmtksdio.c +++ b/drivers/bluetooth/btmtksdio.c @@ -816,7 +816,7 @@ static int btmtksdio_mtk_reg_read(struct hci_dev *hdev, u32 reg, u32 *val) err = mtk_hci_wmt_sync(hdev, &wmt_params); if (err < 0) { - bt_dev_err(hdev, "Failed to read reg(%d)", err); + bt_dev_err(hdev, "Failed to read reg (%d)", err); return err; }