Commit 5b3087ef authored by Gaston Gonzalez's avatar Gaston Gonzalez Committed by Greg Kroah-Hartman
Browse files

staging: vchiq: remove braces from if block



Remove unnecessary braces from if block.

Reported by checkpatch.pl

Signed-off-by: default avatarGaston Gonzalez <gascoar@gmail.com>
Link: https://lore.kernel.org/r/20210915202916.413914-1-gascoar@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 08ff647b
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -17,10 +17,9 @@ static DEFINE_MUTEX(g_connected_mutex);
/* Function to initialize our lock */
static void connected_init(void)
{
	if (!g_once_init) {
	if (!g_once_init)
		g_once_init = 1;
}
}

/*
 * This function is used to defer initialization until the vchiq stack is