Diff between 68255433d63ec600ac7e87626dae357234e8c494 and 7e673560e52b3badc21dd146be5c353049ef5b8d

Changed Files

File Additions Deletions Status
android/hal-pan.c +6 -3 modified

Full Patch

diff --git a/android/hal-pan.c b/android/hal-pan.c
index cacc6c0..bec179f 100644
--- a/android/hal-pan.c
+++ b/android/hal-pan.c
@@ -114,16 +114,19 @@ static bt_status_t pan_init(const btpan_callbacks_t *callbacks)
 
 static void pan_cleanup()
 {
+	struct hal_cmd_register_module cmd;
+
 	DBG("");
 
 	if (!interface_ready())
 		return;
 
-	/* TODO: disable service */
+	cbs = NULL;
 
-	/* TODO: stop PAN thread */
+	cmd.service_id = HAL_SERVICE_ID_PAN;
 
-	cbs = NULL;
+	hal_ipc_cmd(HAL_SERVICE_ID_CORE, HAL_OP_UNREGISTER_MODULE,
+					sizeof(cmd), &cmd, 0, NULL, NULL);
 }
 
 static btpan_interface_t pan_if = {