|
@@ -114,8 +114,8 @@ struct dma_buf_attachment *dma_buf_attach(struct dma_buf *dmabuf,
|
|
|
struct device *dev);
|
|
|
void dma_buf_detach(struct dma_buf *dmabuf,
|
|
|
struct dma_buf_attachment *dmabuf_attach);
|
|
|
-struct dma_buf *dma_buf_export(void *priv, struct dma_buf_ops *ops,
|
|
|
- size_t size, int flags);
|
|
|
+struct dma_buf *dma_buf_export(void *priv, const struct dma_buf_ops *ops,
|
|
|
+ size_t size, int flags);
|
|
|
int dma_buf_fd(struct dma_buf *dmabuf);
|
|
|
struct dma_buf *dma_buf_get(int fd);
|
|
|
void dma_buf_put(struct dma_buf *dmabuf);
|
|
@@ -138,8 +138,8 @@ static inline void dma_buf_detach(struct dma_buf *dmabuf,
|
|
|
}
|
|
|
|
|
|
static inline struct dma_buf *dma_buf_export(void *priv,
|
|
|
- struct dma_buf_ops *ops,
|
|
|
- size_t size, int flags)
|
|
|
+ const struct dma_buf_ops *ops,
|
|
|
+ size_t size, int flags)
|
|
|
{
|
|
|
return ERR_PTR(-ENODEV);
|
|
|
}
|