* [PATCH v2 0/7] Bluetooth: Fix typos
@ 2025-07-03 17:16 Bastien Nocera
2025-07-03 17:16 ` [PATCH v2 1/7] Bluetooth: btintel: Fix typo in comment Bastien Nocera
` (7 more replies)
0 siblings, 8 replies; 9+ messages in thread
From: Bastien Nocera @ 2025-07-03 17:16 UTC (permalink / raw)
To: trivial, Marcel Holtmann, Luiz Augusto von Dentz, Sean Wang,
Matthias Brugger, AngeloGioacchino Del Regno, Sven Peter,
Janne Grunau, Alyssa Rosenzweig, Neal Gompa, Johan Hedberg,
Ingo Molnar, Thomas Gleixner, Bastien Nocera, Al Viro, Kees Cook,
Erick Archer, Chris Lu, linux-bluetooth, linux-kernel,
linux-mediatek, linux-arm-kernel, asahi
Found using codespell.
Probably best taken in through the Bluetooth tree.
Changes since v1:
- Added whether typos were in comments or log strings
- Fix typo in typo fix ("btrtl: Fix typo")
Bastien Nocera (7):
Bluetooth: btintel: Fix typo in comment
Bluetooth: btmtk: Fix typo in log string
Bluetooth: btrtl: Fix typo in comment
Bluetooth: hci_bcm4377: Fix typo in comment
Bluetooth: aosp: Fix typo in comment
Bluetooth: RFCOMM: Fix typos in comments
Bluetooth: Fix typos in comments
drivers/bluetooth/btintel.c | 2 +-
drivers/bluetooth/btmtkuart.c | 2 +-
drivers/bluetooth/btrtl.c | 2 +-
drivers/bluetooth/hci_bcm4377.c | 2 +-
net/bluetooth/aosp.c | 2 +-
net/bluetooth/hci_conn.c | 2 +-
net/bluetooth/hci_event.c | 4 ++--
net/bluetooth/hci_sync.c | 2 +-
net/bluetooth/lib.c | 2 +-
net/bluetooth/rfcomm/core.c | 3 ++-
net/bluetooth/rfcomm/tty.c | 2 +-
net/bluetooth/smp.c | 2 +-
12 files changed, 14 insertions(+), 13 deletions(-)
--
2.50.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v2 1/7] Bluetooth: btintel: Fix typo in comment
2025-07-03 17:16 [PATCH v2 0/7] Bluetooth: Fix typos Bastien Nocera
@ 2025-07-03 17:16 ` Bastien Nocera
2025-07-03 17:16 ` [PATCH v2 2/7] Bluetooth: btmtk: Fix typo in log string Bastien Nocera
` (6 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Bastien Nocera @ 2025-07-03 17:16 UTC (permalink / raw)
To: trivial, Marcel Holtmann, Luiz Augusto von Dentz, Sean Wang,
Matthias Brugger, AngeloGioacchino Del Regno, Sven Peter,
Janne Grunau, Alyssa Rosenzweig, Neal Gompa, Johan Hedberg,
Ingo Molnar, Thomas Gleixner, Bastien Nocera, Al Viro, Kees Cook,
Erick Archer, Chris Lu, linux-bluetooth, linux-kernel,
linux-mediatek, linux-arm-kernel, asahi
Found by codespell.
Signed-off-by: Bastien Nocera <hadess@hadess.net>
---
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 55cc1652bfe4..7cf834089696 100644
--- a/drivers/bluetooth/btintel.c
+++ b/drivers/bluetooth/btintel.c
@@ -555,7 +555,7 @@ int btintel_parse_version_tlv(struct hci_dev *hdev,
/* Consume Command Complete Status field */
skb_pull(skb, 1);
- /* Event parameters contatin multiple TLVs. Read each of them
+ /* Event parameters contain multiple TLVs. Read each of them
* and only keep the required data. Also, it use existing legacy
* version field like hw_platform, hw_variant, and fw_variant
* to keep the existing setup flow
--
2.50.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v2 2/7] Bluetooth: btmtk: Fix typo in log string
2025-07-03 17:16 [PATCH v2 0/7] Bluetooth: Fix typos Bastien Nocera
2025-07-03 17:16 ` [PATCH v2 1/7] Bluetooth: btintel: Fix typo in comment Bastien Nocera
@ 2025-07-03 17:16 ` Bastien Nocera
2025-07-03 17:16 ` [PATCH v2 3/7] Bluetooth: btrtl: Fix typo in comment Bastien Nocera
` (5 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Bastien Nocera @ 2025-07-03 17:16 UTC (permalink / raw)
To: trivial, Marcel Holtmann, Luiz Augusto von Dentz, Sean Wang,
Matthias Brugger, AngeloGioacchino Del Regno, Sven Peter,
Janne Grunau, Alyssa Rosenzweig, Neal Gompa, Johan Hedberg,
Ingo Molnar, Thomas Gleixner, Bastien Nocera, Al Viro, Kees Cook,
Erick Archer, Chris Lu, linux-bluetooth, linux-kernel,
linux-mediatek, linux-arm-kernel, asahi
Found by codespell.
Signed-off-by: Bastien Nocera <hadess@hadess.net>
---
drivers/bluetooth/btmtkuart.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/bluetooth/btmtkuart.c b/drivers/bluetooth/btmtkuart.c
index c97e260fcb0c..4208ebecd560 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;
--
2.50.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v2 3/7] Bluetooth: btrtl: Fix typo in comment
2025-07-03 17:16 [PATCH v2 0/7] Bluetooth: Fix typos Bastien Nocera
2025-07-03 17:16 ` [PATCH v2 1/7] Bluetooth: btintel: Fix typo in comment Bastien Nocera
2025-07-03 17:16 ` [PATCH v2 2/7] Bluetooth: btmtk: Fix typo in log string Bastien Nocera
@ 2025-07-03 17:16 ` Bastien Nocera
2025-07-03 17:16 ` [PATCH v2 4/7] Bluetooth: hci_bcm4377: " Bastien Nocera
` (4 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Bastien Nocera @ 2025-07-03 17:16 UTC (permalink / raw)
To: trivial, Marcel Holtmann, Luiz Augusto von Dentz, Sean Wang,
Matthias Brugger, AngeloGioacchino Del Regno, Sven Peter,
Janne Grunau, Alyssa Rosenzweig, Neal Gompa, Johan Hedberg,
Ingo Molnar, Thomas Gleixner, Bastien Nocera, Al Viro, Kees Cook,
Erick Archer, Chris Lu, linux-bluetooth, linux-kernel,
linux-mediatek, linux-arm-kernel, asahi
Found by codespell.
Signed-off-by: Bastien Nocera <hadess@hadess.net>
---
drivers/bluetooth/btrtl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/bluetooth/btrtl.c b/drivers/bluetooth/btrtl.c
index 7838c89e529e..7c556c37c659 100644
--- a/drivers/bluetooth/btrtl.c
+++ b/drivers/bluetooth/btrtl.c
@@ -693,7 +693,7 @@ static int rtlbt_parse_firmware(struct hci_dev *hdev,
/* Loop from the end of the firmware parsing instructions, until
* we find an instruction that identifies the "project ID" for the
- * hardware supported by this firwmare file.
+ * hardware supported by this firmware file.
* Once we have that, we double-check that project_id is suitable
* for the hardware we are working with.
*/
--
2.50.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v2 4/7] Bluetooth: hci_bcm4377: Fix typo in comment
2025-07-03 17:16 [PATCH v2 0/7] Bluetooth: Fix typos Bastien Nocera
` (2 preceding siblings ...)
2025-07-03 17:16 ` [PATCH v2 3/7] Bluetooth: btrtl: Fix typo in comment Bastien Nocera
@ 2025-07-03 17:16 ` Bastien Nocera
2025-07-03 17:16 ` [PATCH v2 5/7] Bluetooth: aosp: " Bastien Nocera
` (3 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Bastien Nocera @ 2025-07-03 17:16 UTC (permalink / raw)
To: trivial, Marcel Holtmann, Luiz Augusto von Dentz, Sean Wang,
Matthias Brugger, AngeloGioacchino Del Regno, Sven Peter,
Janne Grunau, Alyssa Rosenzweig, Neal Gompa, Johan Hedberg,
Ingo Molnar, Thomas Gleixner, Bastien Nocera, Al Viro, Kees Cook,
Erick Archer, Chris Lu, linux-bluetooth, linux-kernel,
linux-mediatek, linux-arm-kernel, asahi
Found by codespell.
Signed-off-by: Bastien Nocera <hadess@hadess.net>
---
drivers/bluetooth/hci_bcm4377.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/bluetooth/hci_bcm4377.c b/drivers/bluetooth/hci_bcm4377.c
index 9bce53e49cfa..1393580ad075 100644
--- a/drivers/bluetooth/hci_bcm4377.c
+++ b/drivers/bluetooth/hci_bcm4377.c
@@ -420,7 +420,7 @@ struct bcm4377_ring_state {
* payloads_dma:DMA address for payload buffer
* events: pointer to array of completions if waiting is allowed
* msgids: bitmap to keep track of used message ids
- * lock: Spinlock to protect access to ring structurs used in the irq handler
+ * lock: Spinlock to protect access to ring structures used in the irq handler
*/
struct bcm4377_transfer_ring {
enum bcm4377_transfer_ring_id ring_id;
--
2.50.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v2 5/7] Bluetooth: aosp: Fix typo in comment
2025-07-03 17:16 [PATCH v2 0/7] Bluetooth: Fix typos Bastien Nocera
` (3 preceding siblings ...)
2025-07-03 17:16 ` [PATCH v2 4/7] Bluetooth: hci_bcm4377: " Bastien Nocera
@ 2025-07-03 17:16 ` Bastien Nocera
2025-07-03 17:17 ` [PATCH v2 6/7] Bluetooth: RFCOMM: Fix typos in comments Bastien Nocera
` (2 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Bastien Nocera @ 2025-07-03 17:16 UTC (permalink / raw)
To: trivial, Marcel Holtmann, Luiz Augusto von Dentz, Sean Wang,
Matthias Brugger, AngeloGioacchino Del Regno, Sven Peter,
Janne Grunau, Alyssa Rosenzweig, Neal Gompa, Johan Hedberg,
Ingo Molnar, Thomas Gleixner, Bastien Nocera, Al Viro, Kees Cook,
Erick Archer, Chris Lu, linux-bluetooth, linux-kernel,
linux-mediatek, linux-arm-kernel, asahi
Found by codespell.
Signed-off-by: Bastien Nocera <hadess@hadess.net>
---
net/bluetooth/aosp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/bluetooth/aosp.c b/net/bluetooth/aosp.c
index 1d67836e95e1..59025771af53 100644
--- a/net/bluetooth/aosp.c
+++ b/net/bluetooth/aosp.c
@@ -70,7 +70,7 @@ void aosp_do_open(struct hci_dev *hdev)
rp = (struct aosp_rp_le_get_vendor_capa *)skb->data;
version_supported = le16_to_cpu(rp->version_supported);
- /* AOSP displays the verion number like v0.98, v1.00, etc. */
+ /* AOSP displays the version number like v0.98, v1.00, etc. */
bt_dev_info(hdev, "AOSP extensions version v%u.%02u",
version_supported >> 8, version_supported & 0xff);
--
2.50.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v2 6/7] Bluetooth: RFCOMM: Fix typos in comments
2025-07-03 17:16 [PATCH v2 0/7] Bluetooth: Fix typos Bastien Nocera
` (4 preceding siblings ...)
2025-07-03 17:16 ` [PATCH v2 5/7] Bluetooth: aosp: " Bastien Nocera
@ 2025-07-03 17:17 ` Bastien Nocera
2025-07-03 17:17 ` [PATCH v2 7/7] Bluetooth: " Bastien Nocera
2025-07-11 13:50 ` [PATCH v2 0/7] Bluetooth: Fix typos patchwork-bot+bluetooth
7 siblings, 0 replies; 9+ messages in thread
From: Bastien Nocera @ 2025-07-03 17:17 UTC (permalink / raw)
To: trivial, Marcel Holtmann, Luiz Augusto von Dentz, Sean Wang,
Matthias Brugger, AngeloGioacchino Del Regno, Sven Peter,
Janne Grunau, Alyssa Rosenzweig, Neal Gompa, Johan Hedberg,
Ingo Molnar, Thomas Gleixner, Bastien Nocera, Al Viro, Kees Cook,
Erick Archer, Chris Lu, linux-bluetooth, linux-kernel,
linux-mediatek, linux-arm-kernel, asahi
Found by codespell.
Signed-off-by: Bastien Nocera <hadess@hadess.net>
---
net/bluetooth/rfcomm/core.c | 3 ++-
net/bluetooth/rfcomm/tty.c | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/net/bluetooth/rfcomm/core.c b/net/bluetooth/rfcomm/core.c
index 3b8f39618d65..96250807b32b 100644
--- a/net/bluetooth/rfcomm/core.c
+++ b/net/bluetooth/rfcomm/core.c
@@ -1962,7 +1962,8 @@ static void rfcomm_accept_connection(struct rfcomm_session *s)
int err;
/* Fast check for a new connection.
- * Avoids unnesesary socket allocations. */
+ * Avoids unnecessary socket allocations.
+ */
if (list_empty(&bt_sk(sock->sk)->accept_q))
return;
diff --git a/net/bluetooth/rfcomm/tty.c b/net/bluetooth/rfcomm/tty.c
index 21a5b5535ebc..58d1707f7daf 100644
--- a/net/bluetooth/rfcomm/tty.c
+++ b/net/bluetooth/rfcomm/tty.c
@@ -980,7 +980,7 @@ static void rfcomm_tty_set_termios(struct tty_struct *tty,
baud = RFCOMM_RPN_BR_230400;
break;
default:
- /* 9600 is standard accordinag to the RFCOMM specification */
+ /* 9600 is standard according to the RFCOMM specification */
baud = RFCOMM_RPN_BR_9600;
break;
--
2.50.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v2 7/7] Bluetooth: Fix typos in comments
2025-07-03 17:16 [PATCH v2 0/7] Bluetooth: Fix typos Bastien Nocera
` (5 preceding siblings ...)
2025-07-03 17:17 ` [PATCH v2 6/7] Bluetooth: RFCOMM: Fix typos in comments Bastien Nocera
@ 2025-07-03 17:17 ` Bastien Nocera
2025-07-11 13:50 ` [PATCH v2 0/7] Bluetooth: Fix typos patchwork-bot+bluetooth
7 siblings, 0 replies; 9+ messages in thread
From: Bastien Nocera @ 2025-07-03 17:17 UTC (permalink / raw)
To: trivial, Marcel Holtmann, Luiz Augusto von Dentz, Sean Wang,
Matthias Brugger, AngeloGioacchino Del Regno, Sven Peter,
Janne Grunau, Alyssa Rosenzweig, Neal Gompa, Johan Hedberg,
Ingo Molnar, Thomas Gleixner, Bastien Nocera, Al Viro, Kees Cook,
Erick Archer, Chris Lu, linux-bluetooth, linux-kernel,
linux-mediatek, linux-arm-kernel, asahi
Found by codespell.
Signed-off-by: Bastien Nocera <hadess@hadess.net>
---
net/bluetooth/hci_conn.c | 2 +-
net/bluetooth/hci_event.c | 4 ++--
net/bluetooth/hci_sync.c | 2 +-
net/bluetooth/lib.c | 2 +-
net/bluetooth/smp.c | 2 +-
5 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c
index 4f379184df5b..cb360adbb6ec 100644
--- a/net/bluetooth/hci_conn.c
+++ b/net/bluetooth/hci_conn.c
@@ -814,7 +814,7 @@ static int hci_le_big_terminate(struct hci_dev *hdev, u8 big, struct hci_conn *c
*
* Detects if there any BIS left connected in a BIG
* broadcaster: Remove advertising instance and terminate BIG.
- * broadcaster receiver: Teminate BIG sync and terminate PA sync.
+ * broadcaster receiver: Terminate BIG sync and terminate PA sync.
*/
static void bis_cleanup(struct hci_conn *conn)
{
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c
index 66052d6aaa1d..a546cb058e8e 100644
--- a/net/bluetooth/hci_event.c
+++ b/net/bluetooth/hci_event.c
@@ -5754,7 +5754,7 @@ static void le_conn_complete_evt(struct hci_dev *hdev, u8 status,
conn->state = BT_CONFIG;
/* Store current advertising instance as connection advertising instance
- * when sotfware rotation is in use so it can be re-enabled when
+ * when software rotation is in use so it can be re-enabled when
* disconnected.
*/
if (!ext_adv_capable(hdev))
@@ -7077,7 +7077,7 @@ static void hci_le_big_info_adv_report_evt(struct hci_dev *hdev, void *data,
/* Entries in this table shall have their position according to the subevent
* opcode they handle so the use of the macros above is recommend since it does
* attempt to initialize at its proper index using Designated Initializers that
- * way events without a callback function can be ommited.
+ * way events without a callback function can be omitted.
*/
static const struct hci_le_ev {
void (*func)(struct hci_dev *hdev, void *data, struct sk_buff *skb);
diff --git a/net/bluetooth/hci_sync.c b/net/bluetooth/hci_sync.c
index 6687f2a4d1eb..febad7922008 100644
--- a/net/bluetooth/hci_sync.c
+++ b/net/bluetooth/hci_sync.c
@@ -5633,7 +5633,7 @@ int hci_abort_conn_sync(struct hci_dev *hdev, struct hci_conn *conn, u8 reason)
}
/* Cleanup hci_conn object if it cannot be cancelled as it
- * likelly means the controller and host stack are out of sync
+ * likely means the controller and host stack are out of sync
* or in case of LE it was still scanning so it can be cleanup
* safely.
*/
diff --git a/net/bluetooth/lib.c b/net/bluetooth/lib.c
index 43aa01fd07b9..305044a84478 100644
--- a/net/bluetooth/lib.c
+++ b/net/bluetooth/lib.c
@@ -54,7 +54,7 @@ EXPORT_SYMBOL(baswap);
* bt_to_errno() - Bluetooth error codes to standard errno
* @code: Bluetooth error code to be converted
*
- * This function takes a Bluetooth error code as input and convets
+ * This function takes a Bluetooth error code as input and converts
* it to an equivalent Unix/standard errno value.
*
* Return:
diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c
index 47f359f24d1f..5b4ade03bdcc 100644
--- a/net/bluetooth/smp.c
+++ b/net/bluetooth/smp.c
@@ -3172,7 +3172,7 @@ static void smp_ready_cb(struct l2cap_chan *chan)
/* No need to call l2cap_chan_hold() here since we already own
* the reference taken in smp_new_conn_cb(). This is just the
* first time that we tie it to a specific pointer. The code in
- * l2cap_core.c ensures that there's no risk this function wont
+ * l2cap_core.c ensures that there's no risk this function won't
* get called if smp_new_conn_cb was previously called.
*/
conn->smp = chan;
--
2.50.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH v2 0/7] Bluetooth: Fix typos
2025-07-03 17:16 [PATCH v2 0/7] Bluetooth: Fix typos Bastien Nocera
` (6 preceding siblings ...)
2025-07-03 17:17 ` [PATCH v2 7/7] Bluetooth: " Bastien Nocera
@ 2025-07-11 13:50 ` patchwork-bot+bluetooth
7 siblings, 0 replies; 9+ messages in thread
From: patchwork-bot+bluetooth @ 2025-07-11 13:50 UTC (permalink / raw)
To: Bastien Nocera
Cc: trivial, marcel, luiz.dentz, sean.wang, matthias.bgg,
angelogioacchino.delregno, sven, j, alyssa, neal, johan.hedberg,
mingo, tglx, viro, kees, erick.archer, chris.lu, linux-bluetooth,
linux-kernel, linux-mediatek, linux-arm-kernel, asahi
Hello:
This series was applied to bluetooth/bluetooth-next.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:
On Thu, 3 Jul 2025 19:16:54 +0200 you wrote:
> Found using codespell.
>
> Probably best taken in through the Bluetooth tree.
>
> Changes since v1:
> - Added whether typos were in comments or log strings
> - Fix typo in typo fix ("btrtl: Fix typo")
>
> [...]
Here is the summary with links:
- [v2,1/7] Bluetooth: btintel: Fix typo in comment
https://git.kernel.org/bluetooth/bluetooth-next/c/728beb9bb8b3
- [v2,2/7] Bluetooth: btmtk: Fix typo in log string
https://git.kernel.org/bluetooth/bluetooth-next/c/03b2d5bf4881
- [v2,3/7] Bluetooth: btrtl: Fix typo in comment
https://git.kernel.org/bluetooth/bluetooth-next/c/5d12ca753070
- [v2,4/7] Bluetooth: hci_bcm4377: Fix typo in comment
https://git.kernel.org/bluetooth/bluetooth-next/c/aa0d0b408a5a
- [v2,5/7] Bluetooth: aosp: Fix typo in comment
https://git.kernel.org/bluetooth/bluetooth-next/c/033ea129991b
- [v2,6/7] Bluetooth: RFCOMM: Fix typos in comments
https://git.kernel.org/bluetooth/bluetooth-next/c/b14c362ad112
- [v2,7/7] Bluetooth: Fix typos in comments
https://git.kernel.org/bluetooth/bluetooth-next/c/c819e415efb3
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-07-11 13:58 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-03 17:16 [PATCH v2 0/7] Bluetooth: Fix typos Bastien Nocera
2025-07-03 17:16 ` [PATCH v2 1/7] Bluetooth: btintel: Fix typo in comment Bastien Nocera
2025-07-03 17:16 ` [PATCH v2 2/7] Bluetooth: btmtk: Fix typo in log string Bastien Nocera
2025-07-03 17:16 ` [PATCH v2 3/7] Bluetooth: btrtl: Fix typo in comment Bastien Nocera
2025-07-03 17:16 ` [PATCH v2 4/7] Bluetooth: hci_bcm4377: " Bastien Nocera
2025-07-03 17:16 ` [PATCH v2 5/7] Bluetooth: aosp: " Bastien Nocera
2025-07-03 17:17 ` [PATCH v2 6/7] Bluetooth: RFCOMM: Fix typos in comments Bastien Nocera
2025-07-03 17:17 ` [PATCH v2 7/7] Bluetooth: " Bastien Nocera
2025-07-11 13:50 ` [PATCH v2 0/7] Bluetooth: Fix typos patchwork-bot+bluetooth
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).