From 9106927757baa5de8cea27ffd1c90ec236d44747 Mon Sep 17 00:00:00 2001 From: Andrew Cheng Date: Thu, 10 Oct 2024 11:33:23 -0700 Subject: [PATCH] Fix LE Audio sysprops typos in makefiles Makefile contain the following sysprops bluetooth.profile.bap.unicast.server.enabled bluetooth.profile.tbs.server.enabled bluetooth.profile.vc.server.enabled However, CS indicates the above sysprops aren't defined anywhere nor read anywhere? Given how the following LE Audio sysprops are missing from the makefile, and the similarities in naming, we suspect there was a typo? bluetooth.profile.bap.unicast.client.enabled bluetooth.profile.ccp.server.enabled bluetooth.profile.vcp.controller.enabled Bug: 372711861 Test: builds Flag: EXEMPT bugfix Change-Id: I3b1be96531ffa6639647e0240dfc0f07ad1843a3 --- device.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/device.mk b/device.mk index 4c3a5221..fc3766e9 100644 --- a/device.mk +++ b/device.mk @@ -186,7 +186,7 @@ PRODUCT_PRODUCT_PROPERTIES += \ bluetooth.profile.asha.central.enabled?=true \ bluetooth.profile.a2dp.source.enabled?=true \ bluetooth.profile.avrcp.target.enabled?=true \ - bluetooth.profile.bap.unicast.server.enabled?=true \ + bluetooth.profile.bap.unicast.client.enabled?=true \ bluetooth.profile.bas.client.enabled?=true \ bluetooth.profile.csip.set_coordinator.enabled?=true \ bluetooth.profile.gatt.enabled?=true \ @@ -201,8 +201,8 @@ PRODUCT_PRODUCT_PROPERTIES += \ bluetooth.profile.pan.panu.enabled?=true \ bluetooth.profile.pbap.server.enabled?=true \ bluetooth.profile.sap.server.enabled?=true \ - bluetooth.profile.tbs.server.enabled?=true \ - bluetooth.profile.vc.server.enabled?=true + bluetooth.profile.ccp.server.enabled?=true \ + bluetooth.profile.vcp.controller.enabled?=true # Carrier configuration default location PRODUCT_PROPERTY_OVERRIDES += \