xref: /dpdk/app/test-mldev/test_device_ops.h (revision bb38d854fa70f6edab2adfdfd8cbb02f96099135)
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 test_device {
13 	/* common data */
14 	struct test_common cmn;
15 } __rte_cache_aligned;
16 
17 #endif /* TEST_DEVICE_OPS_H */
18