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

Commit e0084650 authored by Roman Kiryanov's avatar Roman Kiryanov
Browse files

goldfish: pipe: ANDROID: fix whitespace



Make checkpatch.pl happy.

Bug: 72717639
Bug: 66884503
Change-Id: Ie8758cc91595eba57a0c9144cfba9309da62c966
Signed-off-by: default avatarRoman Kiryanov <rkir@google.com>
parent 9846d12d
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -685,6 +685,7 @@ static int goldfish_pipe_open(struct inode *inode, struct file *file)

	/* Allocate new pipe kernel object */
	struct goldfish_pipe *pipe = kzalloc(sizeof(*pipe), GFP_KERNEL);

	if (pipe == NULL)
		return -ENOMEM;

@@ -840,7 +841,8 @@ static int goldfish_pipe_device_init_v2(struct platform_device *pdev)
	return 0;
}

static void goldfish_pipe_device_deinit_v2(struct platform_device *pdev) {
static void goldfish_pipe_device_deinit_v2(struct platform_device *pdev)
{
	misc_deregister(&goldfish_pipe_miscdev);
	kfree(goldfish_pipe_dev.pipes);
	free_page((unsigned long)goldfish_pipe_dev.buffers);