Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
include: ipc4: module: fix component ID macros
The existing component ID is composed with 'module_id << 16 | instance_id', it doesn't comply to the initial instance IPC structure: struct { uint32_t module_id : 16; uint32_t instance_id : 8; ... }; When the ID is logged through mtrace, it is hard to use the ID to find the related linux kernel message. This patch fixes component ID composition macros, thus helps to eliminate component ID inconsistency between firmware and linux kernel. Link: #8051 Signed-off-by: Chao Song <[email protected]>
- Loading branch information