From d1508e83bd01d6da540dbd85052559221b670964 Mon Sep 17 00:00:00 2001 From: Kai Vehmanen Date: Thu, 14 Nov 2024 12:55:45 +0200 Subject: [PATCH] platform: intel: drop PLATFORM_DEFAULT_DELAY from platform.h PLATFORM_DEFAULT_DELAY is not needed in Zephyr builds, so it can be dropped from platform.h for all Intel platforms. Signed-off-by: Kai Vehmanen --- src/platform/ace30/include/platform/platform.h | 3 --- src/platform/lunarlake/include/platform/platform.h | 3 --- src/platform/meteorlake/include/platform/platform.h | 3 --- src/platform/tigerlake/include/platform/platform.h | 3 --- 4 files changed, 12 deletions(-) diff --git a/src/platform/ace30/include/platform/platform.h b/src/platform/ace30/include/platform/platform.h index 352061fb4bf3..62ba6a24fe97 100644 --- a/src/platform/ace30/include/platform/platform.h +++ b/src/platform/ace30/include/platform/platform.h @@ -34,9 +34,6 @@ /* local buffer size of DMA tracing */ #define DMA_TRACE_LOCAL_SIZE (HOST_PAGE_SIZE * 2) -/* DSP default delay in cycles */ -#define PLATFORM_DEFAULT_DELAY 12 - #endif /* __PLATFORM_PLATFORM_H__ */ #else diff --git a/src/platform/lunarlake/include/platform/platform.h b/src/platform/lunarlake/include/platform/platform.h index 38e379ae31f4..7238b5abf70c 100644 --- a/src/platform/lunarlake/include/platform/platform.h +++ b/src/platform/lunarlake/include/platform/platform.h @@ -34,9 +34,6 @@ /* local buffer size of DMA tracing */ #define DMA_TRACE_LOCAL_SIZE (HOST_PAGE_SIZE * 2) -/* DSP default delay in cycles */ -#define PLATFORM_DEFAULT_DELAY 12 - #endif /* __PLATFORM_PLATFORM_H__ */ #else diff --git a/src/platform/meteorlake/include/platform/platform.h b/src/platform/meteorlake/include/platform/platform.h index cceb15bb78d5..8cf0cc79a13a 100644 --- a/src/platform/meteorlake/include/platform/platform.h +++ b/src/platform/meteorlake/include/platform/platform.h @@ -34,9 +34,6 @@ /* local buffer size of DMA tracing */ #define DMA_TRACE_LOCAL_SIZE (HOST_PAGE_SIZE * 2) -/* DSP default delay in cycles */ -#define PLATFORM_DEFAULT_DELAY 12 - #endif /* __PLATFORM_PLATFORM_H__ */ #else diff --git a/src/platform/tigerlake/include/platform/platform.h b/src/platform/tigerlake/include/platform/platform.h index 0f9bb2df7f89..74e0cd187aab 100644 --- a/src/platform/tigerlake/include/platform/platform.h +++ b/src/platform/tigerlake/include/platform/platform.h @@ -41,9 +41,6 @@ struct timer; /* local buffer size of DMA tracing */ #define DMA_TRACE_LOCAL_SIZE (HOST_PAGE_SIZE * 2) -/* DSP default delay in cycles */ -#define PLATFORM_DEFAULT_DELAY 12 - extern intptr_t _module_init_start; extern intptr_t _module_init_end;