/* * SPDX-License-Identifier: BSD-2-Clause * * Copyright (c) 2024 Ventana Micro Systems Inc. * * Authors: * Anup Patel */ #ifndef __FDT_MPXY_H__ #define __FDT_MPXY_H__ #include #include #ifdef CONFIG_FDT_MPXY void fdt_mpxy_init(const void *fdt); #else static inline void fdt_mpxy_init(const void *fdt) { } #endif #endif