diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/android/ion/ion.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/android/ion/ion.c b/drivers/staging/android/ion/ion.c index a0802de8c3a1..6f5afab7c1a1 100644 --- a/drivers/staging/android/ion/ion.c +++ b/drivers/staging/android/ion/ion.c | |||
@@ -248,10 +248,10 @@ static void ion_dma_buf_detatch(struct dma_buf *dmabuf, | |||
248 | struct ion_dma_buf_attachment *a = attachment->priv; | 248 | struct ion_dma_buf_attachment *a = attachment->priv; |
249 | struct ion_buffer *buffer = dmabuf->priv; | 249 | struct ion_buffer *buffer = dmabuf->priv; |
250 | 250 | ||
251 | free_duped_table(a->table); | ||
252 | mutex_lock(&buffer->lock); | 251 | mutex_lock(&buffer->lock); |
253 | list_del(&a->list); | 252 | list_del(&a->list); |
254 | mutex_unlock(&buffer->lock); | 253 | mutex_unlock(&buffer->lock); |
254 | free_duped_table(a->table); | ||
255 | 255 | ||
256 | kfree(a); | 256 | kfree(a); |
257 | } | 257 | } |