Commit 936d61ee authored by Jignesh R Patel's avatar Jignesh R Patel Committed by Greg Kroah-Hartman
Browse files

staging: android: Fixed line over 80 char



Fixes the following checkpatch warning:
Warning: Line over 80 characters

Signed-off-by: default avatarJignesh R Patel <jigneshpatel0103@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6ba4df24
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -73,7 +73,8 @@ static int ion_cma_allocate(struct ion_heap *heap, struct ion_buffer *buffer,
	if (!info->table)
		goto free_mem;

	if (dma_get_sgtable(dev, info->table, info->cpu_addr, info->handle, len))
	if (dma_get_sgtable(dev, info->table, info->cpu_addr, info->handle,
			    len))
		goto free_table;
	/* keep this for memory release */
	buffer->priv_virt = info;