/* * 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