1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2017 Marvell International Ltd. 3 * Copyright(c) 2017 Semihalf. 4 * All rights reserved. 5 */ 6 7 #ifndef _RTE_MRVL_COMPAT_H_ 8 #define _RTE_MRVL_COMPAT_H_ 9 10 /* Unluckily, container_of is defined by both DPDK and MUSDK, 11 * we'll declare only one version. 12 * 13 * Note that it is not used in this PMD anyway. 14 */ 15 #ifdef container_of 16 #undef container_of 17 #endif 18 #include "env/mv_autogen_comp_flags.h" 19 #include "drivers/mv_sam.h" 20 #include "drivers/mv_sam_cio.h" 21 #include "drivers/mv_sam_session.h" 22 23 #endif /* _RTE_MRVL_COMPAT_H_ */ 24