summaryrefslogtreecommitdiff
path: root/include/sbi_utils/mpxy/fdt_mpxy.h
blob: 57e0b2420e93b0dd064c95b0b7bc6f59394eabad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * SPDX-License-Identifier: BSD-2-Clause
 *
 * Copyright (c) 2024 Ventana Micro Systems Inc.
 *
 * Authors:
 *   Anup Patel <[email protected]>
 */

#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