mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-29 09:22:53 -04:00
staging: bcm2835-audio: use braces on all arms of statement
Add braces on all arms of the if-else statements in bcm2835-vchiq.c to comply with kernel coding style. Signed-off-by: Aishwarya Pant <aishpant@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
da2ee3eeb8
commit
c05f4ad139
@@ -145,8 +145,9 @@ int bcm2835_audio_start(struct bcm2835_alsa_stream *alsa_stream)
|
||||
work->cmd = BCM2835_AUDIO_START;
|
||||
if (queue_work(alsa_stream->my_wq, &work->my_work))
|
||||
ret = 0;
|
||||
} else
|
||||
} else {
|
||||
LOG_ERR(" .. Error: NULL work kmalloc\n");
|
||||
}
|
||||
}
|
||||
LOG_DBG(" .. OUT %d\n", ret);
|
||||
return ret;
|
||||
@@ -168,8 +169,9 @@ int bcm2835_audio_stop(struct bcm2835_alsa_stream *alsa_stream)
|
||||
work->cmd = BCM2835_AUDIO_STOP;
|
||||
if (queue_work(alsa_stream->my_wq, &work->my_work))
|
||||
ret = 0;
|
||||
} else
|
||||
} else {
|
||||
LOG_ERR(" .. Error: NULL work kmalloc\n");
|
||||
}
|
||||
}
|
||||
LOG_DBG(" .. OUT %d\n", ret);
|
||||
return ret;
|
||||
@@ -194,8 +196,9 @@ int bcm2835_audio_write(struct bcm2835_alsa_stream *alsa_stream,
|
||||
work->count = count;
|
||||
if (queue_work(alsa_stream->my_wq, &work->my_work))
|
||||
ret = 0;
|
||||
} else
|
||||
} else {
|
||||
LOG_ERR(" .. Error: NULL work kmalloc\n");
|
||||
}
|
||||
}
|
||||
LOG_DBG(" .. OUT %d\n", ret);
|
||||
return ret;
|
||||
|
||||
Reference in New Issue
Block a user