2cd175163bcc2cd78fec0fc252202af35258ced8
[dpdk.git] / ecore_hsi_func_common.h
1 #ifndef _HSI_FUNC_COMMON_H
2 #define _HSI_FUNC_COMMON_H
3
4 /* Physical memory descriptor */
5 struct phys_mem_desc {
6         dma_addr_t phys_addr;
7         void *virt_addr;
8         u32 size; /* In bytes */
9 };
10
11 /* Virtual memory descriptor */
12 struct virt_mem_desc {
13         void *ptr;
14         u32 size; /* In bytes */
15 };
16
17 #endif