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

Commit 9eae9b13 authored by Jeff Dike's avatar Jeff Dike Committed by Linus Torvalds
Browse files

[PATCH] uml: style fixes in startup code



Some style fixes in startup.c.

Signed-off-by: default avatarJeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 7242a400
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -95,7 +95,7 @@ static int start_ptraced_child(void **stack_out)
		      status);

	*stack_out = stack;
	return(pid);
	return pid;
}

/* When testing for SYSEMU support, if it is one of the broken versions, we
@@ -445,7 +445,7 @@ int can_do_skas(void)
#else
int can_do_skas(void)
{
	return(0);
	return 0;
}
#endif

@@ -493,11 +493,11 @@ int __init parse_iomem(char *str, int *add)
	iomem_regions = new;
	iomem_size += new->size + UM_KERN_PAGE_SIZE;

	return(0);
	return 0;
 out_close:
	os_close_file(fd);
 out:
	return(1);
	return 1;
}