From 6590279b2455ae4e09d91504da576aa6f02db1d7 Mon Sep 17 00:00:00 2001 From: ChulHo Song Date: Thu, 12 Nov 2015 19:58:05 +0900 Subject: [PATCH] ecs: handle emuld connection status on wearable profile When the emuld open or close the EVDI, the EVDI kernel driver send a emuld connection status to the ECS. But ECS does not handle the emuld connection status on the wearable profile. Eventually the ECP cannot handle emuld status properly. So the code about ignoring kernel message should be removed. Change-Id: I5dcf693298b8cba04328860df56aa4f07c8c38c1 Signed-off-by: ChulHo Song --- tizen/src/ecs/ecs_msg_injector.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tizen/src/ecs/ecs_msg_injector.c b/tizen/src/ecs/ecs_msg_injector.c index c1d6bce7ed..a57f29e930 100644 --- a/tizen/src/ecs/ecs_msg_injector.c +++ b/tizen/src/ecs/ecs_msg_injector.c @@ -779,12 +779,7 @@ static bool injector_req_handle(char* cat, type_group group, type_action action, set_emulator_condition(BOOT_COMPLETED); return true; } else if (!strcmp(cat, MSG_TYPE_GUEST)) { - char* prof = get_emul_profile(); - INFO("emuld connection is %d, with sender %d, profile %s\n", action, group, prof); - if (prof != NULL && !strncmp(prof, "wearable", 8) && group != 0) { - INFO("ignored emuld connection message from kernel in wearable: %s.\n", prof); - return true; // FIXME: WA - wearable profile - } + INFO("emuld connection is %d, with sender %d\n", action, group); set_emuld_connection(action); } else if (!strcmp(cat, MSG_TYPE_HDS)) { do_hds(cat, action); -- 2.34.1