public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH BlueZ 1/2] doc: Fix extra word in doc string
@ 2025-07-08  8:39 Bastien Nocera
  2025-07-08  8:39 ` [PATCH BlueZ 2/2] midi: Fix debug string Bastien Nocera
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bastien Nocera @ 2025-07-08  8:39 UTC (permalink / raw)
  To: linux-bluetooth

---
 doc/mesh-api.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/mesh-api.txt b/doc/mesh-api.txt
index ff302c8787cc..6abf3cb8f0ee 100644
--- a/doc/mesh-api.txt
+++ b/doc/mesh-api.txt
@@ -759,7 +759,7 @@ Methods:
 		assigned to this remote node.
 
 		The device_key parameter is the access layer key that will be
-		will used to decrypt privileged messages from this remote node.
+		used to decrypt privileged messages from this remote node.
 
 		This call affects the local bluetooth-meshd key database only.
 
-- 
2.50.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH BlueZ 2/2] midi: Fix debug string
  2025-07-08  8:39 [PATCH BlueZ 1/2] doc: Fix extra word in doc string Bastien Nocera
@ 2025-07-08  8:39 ` Bastien Nocera
  2025-07-08  9:57 ` [BlueZ,1/2] doc: Fix extra word in doc string bluez.test.bot
  2025-07-08 14:20 ` [PATCH BlueZ 1/2] " patchwork-bot+bluetooth
  2 siblings, 0 replies; 4+ messages in thread
From: Bastien Nocera @ 2025-07-08  8:39 UTC (permalink / raw)
  To: linux-bluetooth

---
 profiles/midi/midi.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/profiles/midi/midi.c b/profiles/midi/midi.c
index 944887acbb42..2ca8fe87f2f0 100644
--- a/profiles/midi/midi.c
+++ b/profiles/midi/midi.c
@@ -322,8 +322,8 @@ static int midi_accept(struct btd_service *service)
 
 	err = snd_seq_client_id(midi->seq_handle);
 	if (err < 0) {
-		error("Could retrieve ALSA client: %s (%d)", snd_strerror(err),
-			err);
+		error("Could not retrieve ALSA client: %s (%d)",
+			snd_strerror(err), err);
 		goto _err_handle;
 	}
 	midi->seq_client_id = err;
-- 
2.50.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* RE: [BlueZ,1/2] doc: Fix extra word in doc string
  2025-07-08  8:39 [PATCH BlueZ 1/2] doc: Fix extra word in doc string Bastien Nocera
  2025-07-08  8:39 ` [PATCH BlueZ 2/2] midi: Fix debug string Bastien Nocera
@ 2025-07-08  9:57 ` bluez.test.bot
  2025-07-08 14:20 ` [PATCH BlueZ 1/2] " patchwork-bot+bluetooth
  2 siblings, 0 replies; 4+ messages in thread
From: bluez.test.bot @ 2025-07-08  9:57 UTC (permalink / raw)
  To: linux-bluetooth, hadess

[-- Attachment #1: Type: text/plain, Size: 1261 bytes --]

This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=979955

---Test result---

Test Summary:
CheckPatch                    PENDING   0.25 seconds
GitLint                       PENDING   0.39 seconds
BuildEll                      PASS      20.22 seconds
BluezMake                     PASS      2621.96 seconds
MakeCheck                     PASS      20.15 seconds
MakeDistcheck                 PASS      185.35 seconds
CheckValgrind                 PASS      236.28 seconds
CheckSmatch                   PASS      306.59 seconds
bluezmakeextell               PASS      128.42 seconds
IncrementalBuild              PENDING   0.24 seconds
ScanBuild                     PASS      921.33 seconds

Details
##############################
Test: CheckPatch - PENDING
Desc: Run checkpatch.pl script
Output:

##############################
Test: GitLint - PENDING
Desc: Run gitlint
Output:

##############################
Test: IncrementalBuild - PENDING
Desc: Incremental build with the patches in the series
Output:



---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH BlueZ 1/2] doc: Fix extra word in doc string
  2025-07-08  8:39 [PATCH BlueZ 1/2] doc: Fix extra word in doc string Bastien Nocera
  2025-07-08  8:39 ` [PATCH BlueZ 2/2] midi: Fix debug string Bastien Nocera
  2025-07-08  9:57 ` [BlueZ,1/2] doc: Fix extra word in doc string bluez.test.bot
@ 2025-07-08 14:20 ` patchwork-bot+bluetooth
  2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+bluetooth @ 2025-07-08 14:20 UTC (permalink / raw)
  To: Bastien Nocera; +Cc: linux-bluetooth

Hello:

This series was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Tue,  8 Jul 2025 10:39:36 +0200 you wrote:
> ---
>  doc/mesh-api.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - [BlueZ,1/2] doc: Fix extra word in doc string
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=9fb0e002fa04
  - [BlueZ,2/2] midi: Fix debug string
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=18cbebbc7252

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] 4+ messages in thread

end of thread, other threads:[~2025-07-08 14:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-08  8:39 [PATCH BlueZ 1/2] doc: Fix extra word in doc string Bastien Nocera
2025-07-08  8:39 ` [PATCH BlueZ 2/2] midi: Fix debug string Bastien Nocera
2025-07-08  9:57 ` [BlueZ,1/2] doc: Fix extra word in doc string bluez.test.bot
2025-07-08 14:20 ` [PATCH BlueZ 1/2] " 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