delta-mem.h 386 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (C) STMicroelectronics SA 2015
  4. * Author: Hugues Fruchet <hugues.fruchet@st.com> for STMicroelectronics.
  5. */
  6. #ifndef DELTA_MEM_H
  7. #define DELTA_MEM_H
  8. int hw_alloc(struct delta_ctx *ctx, u32 size, const char *name,
  9. struct delta_buf *buf);
  10. void hw_free(struct delta_ctx *ctx, struct delta_buf *buf);
  11. #endif /* DELTA_MEM_H */