tools: lshal: Add missing flag to print hal backend information 93/295293/1
authorChanwoo Choi <cw00.choi@samsung.com>
Tue, 4 Jul 2023 23:14:11 +0000 (08:14 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Tue, 4 Jul 2023 23:15:20 +0000 (08:15 +0900)
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 <cw00.choi@samsung.com>
tools/lshal/lshal.c

index 1a25fc8..4b01bfa 100644 (file)
@@ -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);
 }