From 4031522707edd041f57c1b149c018af0c4a60490 Mon Sep 17 00:00:00 2001 From: Jaehoon Chung Date: Wed, 27 Jan 2021 09:27:40 +0900 Subject: [PATCH] halapi: fix wrong module's number about CODEC Fix wrong module's number about CODEC. It's not HAL_MODULE_UNKNOWN. Change-Id: I9cdc3d58ee2feb3bf5137d973972033741c8e352 Signed-off-by: Jaehoon Chung --- src/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.h b/src/common.h index 4121c1b..f07d7c6 100644 --- a/src/common.h +++ b/src/common.h @@ -405,7 +405,7 @@ static struct __hal_module_info { }, [HAL_MODULE_CODEC] = { .group = HAL_GROUP_MULTIMEDIA, - .module = HAL_MODULE_UNKNOWN, + .module = HAL_MODULE_CODEC, .license = HAL_LICENSE_APACHE_2_0, .module_name = "CODEC", .library_name = NULL, -- 2.7.4