/* * 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 int fdt_mpxy_init(const void *fdt); #else static inline int fdt_mpxy_init(const void *fdt) { return 0; } #endif #endif