From 3ad95447c808a2b9c552dbebd750e8b48e5f539a Mon Sep 17 00:00:00 2001 From: "Bjoern A. Zeeb" Date: Fri, 29 Aug 2014 12:48:38 +0000 Subject: [PATCH] These functions are #defined to "osdep" specific names without the "_mem" extension. Provide prototypes for the actual implementations. Correct function arguments to match the implementations. MFC after: 3 days X-MFC with: r270755 --- sys/dev/ixl/i40e_alloc.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/sys/dev/ixl/i40e_alloc.h b/sys/dev/ixl/i40e_alloc.h index dc6fadd188f3..94673572bfb9 100755 --- a/sys/dev/ixl/i40e_alloc.h +++ b/sys/dev/ixl/i40e_alloc.h @@ -51,16 +51,15 @@ enum i40e_memory_type { }; /* prototype for functions used for dynamic memory allocation */ -enum i40e_status_code i40e_allocate_dma_mem(struct i40e_hw *hw, +enum i40e_status_code i40e_allocate_dma(struct i40e_hw *hw, struct i40e_dma_mem *mem, - enum i40e_memory_type type, - u64 size, u32 alignment); -enum i40e_status_code i40e_free_dma_mem(struct i40e_hw *hw, + bus_size_t size, u32 alignment); +enum i40e_status_code i40e_free_dma(struct i40e_hw *hw, struct i40e_dma_mem *mem); -enum i40e_status_code i40e_allocate_virt_mem(struct i40e_hw *hw, +enum i40e_status_code i40e_allocate_virt(struct i40e_hw *hw, struct i40e_virt_mem *mem, u32 size); -enum i40e_status_code i40e_free_virt_mem(struct i40e_hw *hw, +enum i40e_status_code i40e_free_virt(struct i40e_hw *hw, struct i40e_virt_mem *mem); #endif /* _I40E_ALLOC_H_ */