summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kogan <maxkogan@google.com>2020-06-09 01:30:03 -0700
committerCraig Dooley <dooleyc@google.com>2020-06-09 17:27:31 +0000
commit8365f982b665796a90eabc7f5f90a41d1367fa06 (patch)
tree4110d3269ef04c0aad3f1b6f7de8ff597b42bfd4
parent4f72ed10222c30c31d2f8deeeae4403d9c2960d4 (diff)
downloadaoc-ipc-8365f982b665796a90eabc7f5f90a41d1367fa06.tar.gz
Restore fw_version field in aoc_control_block
Removing fw_version field without modifying the driver caused the kernel build to fail. Restoring fw_version field (set to 0) to be modified together with the driver changes Bug: 157658932 Change-Id: I63a801c232df99ca25b824e5b8b8910137f5a641
-rw-r--r--aoc_ipc_core_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/aoc_ipc_core_internal.h b/aoc_ipc_core_internal.h
index e263781..babf6e6 100644
--- a/aoc_ipc_core_internal.h
+++ b/aoc_ipc_core_internal.h
@@ -51,7 +51,7 @@ extern "C" {
#define AOC_MAGIC 0xA0C00A0C
struct aoc_control_block {
u32 magic;
- u32 reserved;
+ u32 fw_version;
u32 hw_version;
u32 status;
u64 supported_features;