xref: /dpdk/app/test-mldev/test_device_ops.h (revision 0efea35a2bb0ae9df6e204151c7f96b5eb93e130)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright (c) 2022 Marvell.
3  */
4 
5 #ifndef TEST_DEVICE_OPS_H
6 #define TEST_DEVICE_OPS_H
7 
8 #include <rte_common.h>
9 
10 #include "test_common.h"
11 
12 struct __rte_cache_aligned test_device {
13 	/* common data */
14 	struct test_common cmn;
15 };
16 
17 #endif /* TEST_DEVICE_OPS_H */
18