diff mbox series

[BlueZ,v1,3/3] ccp: Mark plugin for testing

Message ID 20240423224603.2124790-3-luiz.dentz@gmail.com
State New
Headers show
Series [BlueZ,v1,1/3] gdbus: Add testing flags | expand

Commit Message

Luiz Augusto von Dentz April 23, 2024, 10:46 p.m. UTC
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

This makes ccp plugin for testing only rather than experimental since
it is only meant for test validation as platforms shall integrate CCP
directly into their telephony stack.
---
 profiles/audio/ccp.c | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)
diff mbox series

Patch

diff --git a/profiles/audio/ccp.c b/profiles/audio/ccp.c
index fe678de9fede..ae17a31f7ed3 100644
--- a/profiles/audio/ccp.c
+++ b/profiles/audio/ccp.c
@@ -206,19 +206,17 @@  ccp_server_remove(struct btd_profile *p,
 }
 
 static struct btd_profile ccp_profile = {
-	.name			= "ccp",
-	.priority		= BTD_PROFILE_PRIORITY_MEDIUM,
+	.name		= "ccp",
+	.priority	= BTD_PROFILE_PRIORITY_MEDIUM,
 	.remote_uuid	= GTBS_UUID_STR,
 	.device_probe	= ccp_probe,
 	.device_remove	= ccp_remove,
-	.accept			= ccp_accept,
-	.connect		= ccp_connect,
-	.disconnect		= ccp_disconnect,
-
+	.accept		= ccp_accept,
+	.connect	= ccp_connect,
+	.disconnect	= ccp_disconnect,
 	.adapter_probe	= ccp_server_probe,
 	.adapter_remove = ccp_server_remove,
-
-	.experimental	= true,
+	.testing	= true,
 };
 
 static int ccp_init(void)