xref: /dpdk/lib/eal/arm/include/rte_io.h (revision daa02b5cddbb8e11b31d41e2bf7bb1ae64dcae2f)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2016 Cavium, Inc
3  */
4 
5 #ifndef _RTE_IO_ARM_H_
6 #define _RTE_IO_ARM_H_
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 #ifdef RTE_ARCH_64
13 #include "rte_io_64.h"
14 #else
15 #include "generic/rte_io.h"
16 #endif
17 
18 #ifdef __cplusplus
19 }
20 #endif
21 
22 #endif /* _RTE_IO_ARM_H_ */
23