Commit c8280337 authored by Aishwarya Pant's avatar Aishwarya Pant Committed by Greg Kroah-Hartman

staging: bcm2835-audio: match alignment with open parenthesis

Fix the following checkpatch warning issued on bcm2835-vchiq.c:
CHECK: Alignment should match open parenthesis
Signed-off-by: default avatarAishwarya Pant <aishpant@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 30b3adf0
...@@ -317,6 +317,7 @@ vc_vchi_audio_init(VCHI_INSTANCE_T vchi_instance, ...@@ -317,6 +317,7 @@ vc_vchi_audio_init(VCHI_INSTANCE_T vchi_instance,
LOG_DBG("%s: about to open %i\n", __func__, i); LOG_DBG("%s: about to open %i\n", __func__, i);
status = vchi_service_open(vchi_instance, &params, status = vchi_service_open(vchi_instance, &params,
&instance->vchi_handle[i]); &instance->vchi_handle[i]);
LOG_DBG("%s: opened %i: %p=%d\n", __func__, i, instance->vchi_handle[i], status); LOG_DBG("%s: opened %i: %p=%d\n", __func__, i, instance->vchi_handle[i], status);
if (status) { if (status) {
LOG_ERR("%s: failed to open VCHI service connection (status=%d)\n", LOG_ERR("%s: failed to open VCHI service connection (status=%d)\n",
...@@ -849,11 +850,9 @@ static int bcm2835_audio_write_worker(struct bcm2835_alsa_stream *alsa_stream, ...@@ -849,11 +850,9 @@ static int bcm2835_audio_write_worker(struct bcm2835_alsa_stream *alsa_stream,
/* Send the message to the videocore */ /* Send the message to the videocore */
status = vchi_bulk_queue_transmit(instance->vchi_handle[0], status = vchi_bulk_queue_transmit(instance->vchi_handle[0],
src, count, src, count,
0 * 0 * VCHI_FLAGS_BLOCK_UNTIL_QUEUED
VCHI_FLAGS_BLOCK_UNTIL_QUEUED
+ +
1 * 1 * VCHI_FLAGS_BLOCK_UNTIL_DATA_READ,
VCHI_FLAGS_BLOCK_UNTIL_DATA_READ,
NULL); NULL);
} else { } else {
while (count > 0) { while (count > 0) {
......
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