Commit c612ae05 authored by Christian König's avatar Christian König Committed by Christian König

staging: android: ion: fix ion_dma_buf_attach signatur

Fixup for "dma_buf: remove device parameter from attach callback v2".

I missed this driver, sorry for the noise. Patch is not even compile
tested.
Signed-off-by: default avatarChristian König <christian.koenig@amd.com>
Reviewed-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/230641/
parent f55786fa
...@@ -201,7 +201,7 @@ struct ion_dma_buf_attachment { ...@@ -201,7 +201,7 @@ struct ion_dma_buf_attachment {
struct list_head list; struct list_head list;
}; };
static int ion_dma_buf_attach(struct dma_buf *dmabuf, struct device *dev, static int ion_dma_buf_attach(struct dma_buf *dmabuf,
struct dma_buf_attachment *attachment) struct dma_buf_attachment *attachment)
{ {
struct ion_dma_buf_attachment *a; struct ion_dma_buf_attachment *a;
...@@ -219,7 +219,7 @@ static int ion_dma_buf_attach(struct dma_buf *dmabuf, struct device *dev, ...@@ -219,7 +219,7 @@ static int ion_dma_buf_attach(struct dma_buf *dmabuf, struct device *dev,
} }
a->table = table; a->table = table;
a->dev = dev; a->dev = attachment->dev;
INIT_LIST_HEAD(&a->list); INIT_LIST_HEAD(&a->list);
attachment->priv = a; attachment->priv = a;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment