| /* | |
| * SPDX-License-Identifier: BSD-2-Clause | |
| * | |
| * Copyright (c) 2024 Ventana Micro Systems Inc. | |
| * | |
| * Authors: | |
| * Anup Patel <apatel@ventanamicro.com> | |
| */ | |
| #ifndef __FDT_MPXY_H__ | |
| #define __FDT_MPXY_H__ | |
| #include <sbi/sbi_types.h> | |
| #include <sbi_utils/fdt/fdt_driver.h> | |
| #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 |