From 2164f88901703afd3c9a2942ad726310f37705aa Mon Sep 17 00:00:00 2001 From: Kai Vehmanen Date: Wed, 11 Sep 2024 15:16:32 +0300 Subject: [PATCH] platform: lunarlake: remove drivers/interrupt.h Remove the unused platform header. Signed-off-by: Kai Vehmanen --- .../include/platform/drivers/interrupt.h | 36 ------------------- 1 file changed, 36 deletions(-) delete mode 100644 src/platform/lunarlake/include/platform/drivers/interrupt.h diff --git a/src/platform/lunarlake/include/platform/drivers/interrupt.h b/src/platform/lunarlake/include/platform/drivers/interrupt.h deleted file mode 100644 index 49f654efaae9..000000000000 --- a/src/platform/lunarlake/include/platform/drivers/interrupt.h +++ /dev/null @@ -1,36 +0,0 @@ -/* SPDX-License-Identifier: BSD-3-Clause - * - * Copyright(c) 2023 Intel Corporation. All rights reserved. - * - * Author: Liam Girdwood - * Keyon Jie - * Rander Wang - */ - -#ifdef __SOF_DRIVERS_INTERRUPT_H__ - -#ifndef __PLATFORM_DRIVERS_INTERRUPT_H__ -#define __PLATFORM_DRIVERS_INTERRUPT_H__ - -#if !defined(__ASSEMBLER__) && !defined(LINKER) - -#include - -#include - -#endif - -/* Required by sof/drivers/interrupt.h */ -#define PLATFORM_IRQ_CHILDREN 32 - -/* Required by zephyr/wrapper.c */ -#define IRQ_NUM_EXT_LEVEL2 4 /* level 2 */ -#define IRQ_NUM_EXT_LEVEL5 16 /* level 5 */ - -#endif /* __PLATFORM_DRIVERS_INTERRUPT_H__ */ - -#else - -#error "This file shouldn't be included from outside of sof/drivers/interrupt.h" - -#endif /* __SOF_DRIVERS_INTERRUPT_H__ */