You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
410 B
14 lines
410 B
/*
|
|
* Copyright (C) STMicroelectronics SA 2015
|
|
* Author: Hugues Fruchet <hugues.fruchet@st.com> for STMicroelectronics.
|
|
* License terms: GNU General Public License (GPL), version 2
|
|
*/
|
|
|
|
#ifndef DELTA_MEM_H
|
|
#define DELTA_MEM_H
|
|
|
|
int hw_alloc(struct delta_ctx *ctx, u32 size, const char *name,
|
|
struct delta_buf *buf);
|
|
void hw_free(struct delta_ctx *ctx, struct delta_buf *buf);
|
|
|
|
#endif /* DELTA_MEM_H */
|
|
|