From cb70dffa0a726b68e9e84c52c07ad174f7ddac86 Mon Sep 17 00:00:00 2001 From: Anup Patel Date: Thu, 4 Sep 2025 10:54:10 +0530 Subject: lib: utils/ipi: Convert IPI drivers as early drivers The fdt_ipi_init() is already called from generic_early_init() so let's convert IPI drivers as early drivers. Signed-off-by: Anup Patel Reviewed-by: Samuel Holland Tested-by: Nick Hu Link: https://lore.kernel.org/r/20250904052410.546818-4-apatel@ventanamicro.com Signed-off-by: Anup Patel --- include/sbi_utils/ipi/fdt_ipi.h | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 include/sbi_utils/ipi/fdt_ipi.h (limited to 'include') diff --git a/include/sbi_utils/ipi/fdt_ipi.h b/include/sbi_utils/ipi/fdt_ipi.h deleted file mode 100644 index 9b014470..00000000 --- a/include/sbi_utils/ipi/fdt_ipi.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * SPDX-License-Identifier: BSD-2-Clause - * - * Copyright (c) 2020 Western Digital Corporation or its affiliates. - * - * Authors: - * Anup Patel - */ - -#ifndef __FDT_IPI_H__ -#define __FDT_IPI_H__ - -#include -#include - -#ifdef CONFIG_FDT_IPI - -int fdt_ipi_init(void); - -#else - -static inline int fdt_ipi_init(void) { return 0; } - -#endif - -#endif -- cgit v1.3.1