summaryrefslogtreecommitdiff
path: root/include/host_command.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/host_command.h')
-rw-r--r--include/host_command.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/host_command.h b/include/host_command.h
index 7dd0a74dfd..f54244b571 100644
--- a/include/host_command.h
+++ b/include/host_command.h
@@ -132,17 +132,10 @@ struct host_command {
int version_mask;
};
-#ifdef CONFIG_HOST_EVENT64
typedef uint64_t host_event_t;
#define HOST_EVENT_CPRINTS(str, e) CPRINTS("%s 0x%016" PRIx64, str, e)
#define HOST_EVENT_CCPRINTF(str, e) ccprintf("%s 0x%016" PRIx64 "\n", str, e)
-#else
-typedef uint32_t host_event_t;
-#define HOST_EVENT_CPRINTS(str, e) CPRINTS("%s 0x%08x", str, e)
-#define HOST_EVENT_CCPRINTF(str, e) ccprintf("%s 0x%08x\n", str, e)
-#endif
-
/**
* Return a pointer to the memory-mapped buffer.
*