From: Bastien Nocera Date: Thu, 3 Jul 2025 17:16:56 +0000 (+0200) Subject: Bluetooth: btmtk: Fix typo in log string X-Git-Tag: io_uring-6.17-20250815~128^2~31^2~19 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=b32cb99d9d846bc7d9bdc6d5964ca8f512528359;p=linux-block.git Bluetooth: btmtk: Fix typo in log string Found by codespell. Signed-off-by: Bastien Nocera Signed-off-by: Luiz Augusto von Dentz --- diff --git a/drivers/bluetooth/btmtkuart.c b/drivers/bluetooth/btmtkuart.c index 51400a891f6e..76995cfcd534 100644 --- a/drivers/bluetooth/btmtkuart.c +++ b/drivers/bluetooth/btmtkuart.c @@ -316,7 +316,7 @@ mtk_stp_split(struct btmtkuart_dev *bdev, const unsigned char *data, int count, /* Resync STP when unexpected data is being read */ if (shdr->prefix != 0x80 || bdev->stp_dlen > 2048) { - bt_dev_err(bdev->hdev, "stp format unexpect (%d, %d)", + bt_dev_err(bdev->hdev, "stp format unexpected (%d, %d)", shdr->prefix, bdev->stp_dlen); bdev->stp_cursor = 2; bdev->stp_dlen = 0;