Commit 44858424 authored by Ben LeMasurier's avatar Ben LeMasurier Committed by Greg Kroah-Hartman

Staging: android: ion: ion_test.c: fix parenthesis alignment

This fixes the checkpatch.pl "Alignment should match open parenthesis"
issues in ion_test.c.
Signed-off-by: default avatarBen LeMasurier <ben@crypt.ly>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 33a5956c
......@@ -42,7 +42,8 @@ struct ion_test_data {
};
static int ion_handle_test_dma(struct device *dev, struct dma_buf *dma_buf,
void __user *ptr, size_t offset, size_t size, bool write)
void __user *ptr, size_t offset, size_t size,
bool write)
{
int ret = 0;
struct dma_buf_attachment *attach;
......@@ -180,7 +181,8 @@ static long ion_test_ioctl(struct file *filp, unsigned int cmd,
{
ret = ion_handle_test_dma(test_data->dev, test_data->dma_buf,
u64_to_uptr(data.test_rw.ptr),
data.test_rw.offset, data.test_rw.size,
data.test_rw.offset,
data.test_rw.size,
data.test_rw.write);
break;
}
......@@ -188,7 +190,8 @@ static long ion_test_ioctl(struct file *filp, unsigned int cmd,
{
ret = ion_handle_test_kernel(test_data->dma_buf,
u64_to_uptr(data.test_rw.ptr),
data.test_rw.offset, data.test_rw.size,
data.test_rw.offset,
data.test_rw.size,
data.test_rw.write);
break;
}
......
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