brintos

brintos / linux-shallow public Read only

0
0
Text · 386 B · ff7d02f Raw
15 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * Copyright (C) STMicroelectronics SA 20154 * Author: Hugues Fruchet <hugues.fruchet@st.com> for STMicroelectronics.5 */6 7#ifndef DELTA_MEM_H8#define DELTA_MEM_H9 10int hw_alloc(struct delta_ctx *ctx, u32 size, const char *name,11	     struct delta_buf *buf);12void hw_free(struct delta_ctx *ctx, struct delta_buf *buf);13 14#endif /* DELTA_MEM_H */15