summaryrefslogtreecommitdiff
path: root/drivers/staging/nmf-cm/cm/engine/memory/inc/remote_allocator_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/nmf-cm/cm/engine/memory/inc/remote_allocator_utils.h')
-rw-r--r--drivers/staging/nmf-cm/cm/engine/memory/inc/remote_allocator_utils.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/nmf-cm/cm/engine/memory/inc/remote_allocator_utils.h b/drivers/staging/nmf-cm/cm/engine/memory/inc/remote_allocator_utils.h
index ce99e4d7a94..0a7c901187b 100644
--- a/drivers/staging/nmf-cm/cm/engine/memory/inc/remote_allocator_utils.h
+++ b/drivers/staging/nmf-cm/cm/engine/memory/inc/remote_allocator_utils.h
@@ -20,14 +20,13 @@ typedef enum {
PUBLIC void updateFreeList(t_cm_allocator_desc* alloc, t_cm_chunk* chunk);
-PUBLIC void linkChunk(t_cm_chunk* prev,t_cm_chunk* add);
+PUBLIC void linkChunk(t_cm_allocator_desc* alloc, t_cm_chunk* prev,t_cm_chunk* add);
PUBLIC void unlinkChunk(t_cm_allocator_desc* alloc,t_cm_chunk* current);
PUBLIC void unlinkFreeMem(t_cm_allocator_desc* alloc,t_cm_chunk* current);
PUBLIC void linkFreeMemBefore(t_cm_chunk* add, t_cm_chunk* next);
PUBLIC void linkFreeMemAfter(t_cm_chunk* prev,t_cm_chunk* add);
-PUBLIC void mergeChunk(t_cm_allocator_desc* alloc,t_cm_chunk *c,t_cm_chunk *destroy);
PUBLIC t_cm_chunk* splitChunk(t_cm_allocator_desc* alloc, t_cm_chunk *chunk, t_uint32 offset, t_mem_split_position position);
#endif /*REMOTE_ALLOCATOR_UTILS_H_*/