mbox series

[BlueZ,0/1] Fix MediaEndpoint prop codec for bcast src endpoint

Message ID 20240327134947.40229-1-silviu.barbulescu@nxp.com (mailing list archive)
Headers show
Series Fix MediaEndpoint prop codec for bcast src endpoint | expand

Message

Silviu Florian Barbulescu March 27, 2024, 1:49 p.m. UTC
Fix MediaEndpoint prop codec returns 0 for bcast src endpoint

before:
gdbus introspect --system --dest org.bluez --object-path
 /org/bluez/hci0/pac_bcast0
node /org/bluez/hci0/pac_bcast0 {
  ......
  interface org.bluez.MediaEndpoint1 {
  ......
    properties:
      readonly s UUID = '00001851-0000-1000-8000-00805f9b34fb';
      readonly y Codec = 0x00;
  .......
  };
  .......
};

after:
gdbus introspect --system --dest org.bluez --object-path
 /org/bluez/hci0/pac_bcast0
node /org/bluez/hci0/pac_bcast0 {
  ......
  interface org.bluez.MediaEndpoint1 {
  ......
    properties:
      readonly s UUID = '00001851-0000-1000-8000-00805f9b34fb';
      readonly y Codec = 0x06;
  .......
  };
  .......
};

Silviu Florian Barbulescu (1):
  bap: Fix MediaEndpoint prop codec returns 0 for bcast src endpoint

 profiles/audio/bap.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)


base-commit: 41d6c4e1c92fc6e0757b0f71ca5062671ff55235

Comments

patchwork-bot+bluetooth@kernel.org March 28, 2024, 2:40 p.m. UTC | #1
Hello:

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

On Wed, 27 Mar 2024 15:49:46 +0200 you wrote:
> Fix MediaEndpoint prop codec returns 0 for bcast src endpoint
> 
> before:
> gdbus introspect --system --dest org.bluez --object-path
>  /org/bluez/hci0/pac_bcast0
> node /org/bluez/hci0/pac_bcast0 {
>   ......
>   interface org.bluez.MediaEndpoint1 {
>   ......
>     properties:
>       readonly s UUID = '00001851-0000-1000-8000-00805f9b34fb';
>       readonly y Codec = 0x00;
>   .......
>   };
>   .......
> };
> 
> [...]

Here is the summary with links:
  - [BlueZ,1/1] bap: Fix MediaEndpoint prop codec for bcast src endpoint
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=0ff7392af164

You are awesome, thank you!