From 9896bfa839780b102e20766eda24d2a3b7367871 Mon Sep 17 00:00:00 2001 From: Dongwoo Lee Date: Fri, 23 Aug 2019 13:58:35 +0900 Subject: [PATCH] pass: Add PMQoS as supported module for nonstandard resource Since PMQoS is not supported for the nonstandard resource, these resourced such as trm cannot receive PMQoS events. This patch adds PMQoS as supported module for nonstandard resource in order to handle relevant events. Change-Id: I8377fb4cc1a6a0bf1df7029c9efbbd433a5806a7 Signed-off-by: Dongwoo Lee --- src/pass/pass.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pass/pass.c b/src/pass/pass.c index 39af785..8ce5876 100644 --- a/src/pass/pass.c +++ b/src/pass/pass.c @@ -74,7 +74,8 @@ static uint64 supported_module[] = { | PASS_MODULE_PMQOS, [PASS_RESOURCE_NONSTANDARD_ID] = PASS_MODULE_PARSER - | PASS_MODULE_RESCON, + | PASS_MODULE_RESCON + | PASS_MODULE_PMQOS, }; extern int pass_rescon_init(struct pass_resource *res); -- 2.7.4