From: Chanwoo Choi Date: Tue, 4 Jul 2023 23:14:11 +0000 (+0900) Subject: tools: lshal: Add missing flag to print hal backend information X-Git-Tag: accepted/tizen/8.0/unified/20231005.094410~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=ed13fa66187343d52b21e34cd07db4faa783d733;p=platform%2Fhal%2Fapi%2Fcommon.git tools: lshal: Add missing flag to print hal backend information Need to pass LSHAL_FLAG_* flags in order to print the hal backend information. commit 9746f25a833a (tools: lshal: Fix wrong operation when checking flag is set or not) fixed the wrong bitmap operation. In result, the unknown issue occurred. So that add missing flag to print all hal backend information. Change-Id: If07f0908e4b4d50862ba942a3678d7e52fff8ce5 Signed-off-by: Chanwoo Choi --- diff --git a/tools/lshal/lshal.c b/tools/lshal/lshal.c index 1a25fc8..4b01bfa 100644 --- a/tools/lshal/lshal.c +++ b/tools/lshal/lshal.c @@ -208,7 +208,9 @@ static void lshal(void) | LSHAL_FLAG_BACKEND_SYMBOL_NAME | LSHAL_FLAG_BACKEND_NAME | LSHAL_FLAG_BACKEND_VENDOR_NAME - | LSHAL_FLAG_BACKEND_USAGE_COUNT); + | LSHAL_FLAG_BACKEND_USAGE_COUNT + | LSHAL_FLAG_BACKEND_MODULE_NAME + | LSHAL_FLAG_BACKEND_ABI_VERSION); lshal_print_hal_backend_info(flags); }