mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 15:22:18 +00:00
14 lines
226 B
C
14 lines
226 B
C
|
/* SPDX-License-Identifier: MIT */
|
||
|
/*
|
||
|
* Copyright © 2020 Intel Corporation
|
||
|
*/
|
||
|
|
||
|
#ifndef DMA_RESV_UTILS_H
|
||
|
#define DMA_RESV_UTILS_H
|
||
|
|
||
|
struct dma_resv;
|
||
|
|
||
|
void dma_resv_prune(struct dma_resv *resv);
|
||
|
|
||
|
#endif /* DMA_RESV_UTILS_H */
|