xref: /dpdk/lib/eal/arm/include/rte_prefetch.h (revision 99a2dd955fba6e4cc23b77d590a033650ced9c45)
1*99a2dd95SBruce Richardson /* SPDX-License-Identifier: BSD-3-Clause
2*99a2dd95SBruce Richardson  * Copyright(c) 2015 RehiveTech. All rights reserved.
3*99a2dd95SBruce Richardson  */
4*99a2dd95SBruce Richardson 
5*99a2dd95SBruce Richardson #ifndef _RTE_PREFETCH_ARM_H_
6*99a2dd95SBruce Richardson #define _RTE_PREFETCH_ARM_H_
7*99a2dd95SBruce Richardson 
8*99a2dd95SBruce Richardson #ifdef RTE_ARCH_64
9*99a2dd95SBruce Richardson #include <rte_prefetch_64.h>
10*99a2dd95SBruce Richardson #else
11*99a2dd95SBruce Richardson #include <rte_prefetch_32.h>
12*99a2dd95SBruce Richardson #endif
13*99a2dd95SBruce Richardson 
14*99a2dd95SBruce Richardson #endif /* _RTE_PREFETCH_ARM_H_ */
15