brintos

brintos / linux-shallow public Read only

0
0
Text · 343 B · 22818bb Raw
23 lines · c
1/*2 * SPDX-License-Identifier: MIT3 *4 * Copyright © 2016 Intel Corporation5 */6 7#ifndef __MOCK_DMABUF_H__8#define __MOCK_DMABUF_H__9 10#include <linux/dma-buf.h>11 12struct mock_dmabuf {13	int npages;14	struct page *pages[];15};16 17static inline struct mock_dmabuf *to_mock(struct dma_buf *buf)18{19	return buf->priv;20}21 22#endif /* !__MOCK_DMABUF_H__ */23