Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a47a5692 authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "drivers: dma-buf: replace dma_buf_put with fput in free_proc"

parents 4eab1820 b8cf4222
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1358,7 +1358,7 @@ static void free_proc(struct dma_proc *proc)
	struct dma_info *tmp, *n;

	list_for_each_entry_safe(tmp, n, &proc->dma_bufs, head) {
		dma_buf_put(tmp->dmabuf);
		fput(tmp->dmabuf->file);
		list_del(&tmp->head);
		kfree(tmp);
	}