From 28b948772a4b272fddc42b59294a02e16096e99a Mon Sep 17 00:00:00 2001 From: Wootak Jung Date: Fri, 16 Sep 2022 14:43:23 +0900 Subject: [PATCH] Disable sound related logic Change-Id: Ib3942580a61856f37844cf05227d5ae775a67d0e --- src/bt-syspopup-m.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/bt-syspopup-m.c b/src/bt-syspopup-m.c index 087c41a..3f52c0a 100644 --- a/src/bt-syspopup-m.c +++ b/src/bt-syspopup-m.c @@ -309,6 +309,7 @@ static void __bluetooth_cleanup_win(struct bt_popup_appdata *ad) } } +#if TIZEN_FEATURE_SOUND static void __bluetooth_player_free_job_cb(void *data) { FN_START; @@ -547,6 +548,7 @@ static int __bluetooth_notify_event(struct bt_popup_appdata *ad) FN_END; return ret; } +#endif static void __bluetooth_parse_event(struct bt_popup_appdata *ad, const char *event_type) { @@ -2838,7 +2840,9 @@ static void __bluetooth_reset(app_control_h app_control, void *data) if (ret != 0) __bluetooth_remove_all_event(ad); +#if TIZEN_FEATURE_SOUND __bluetooth_notify_event(ad); +#endif /* Change LCD brightness */ ret = display_change_state(LCD_NORMAL); @@ -2862,7 +2866,9 @@ static void __bluetooth_reset(app_control_h app_control, void *data) if (ret != 0) __bluetooth_remove_all_event(ad); +#if TIZEN_FEATURE_SOUND __bluetooth_notify_event(ad); +#endif /* Change LCD brightness */ ret = display_change_state(LCD_NORMAL); -- 2.34.1