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

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
Loading
Loading
Loading
Loading
+9 −10
Original line number Diff line number Diff line
@@ -317,6 +317,7 @@ vc_vchi_audio_init(VCHI_INSTANCE_T vchi_instance,
		LOG_DBG("%s: about to open %i\n", __func__, i);
		status = vchi_service_open(vchi_instance, &params,
					   &instance->vchi_handle[i]);

		LOG_DBG("%s: opened %i: %p=%d\n", __func__, i, instance->vchi_handle[i], status);
		if (status) {
			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,
			/* Send the message to the videocore */
			status = vchi_bulk_queue_transmit(instance->vchi_handle[0],
							  src, count,
				0 *
				VCHI_FLAGS_BLOCK_UNTIL_QUEUED
							  0 * VCHI_FLAGS_BLOCK_UNTIL_QUEUED
							  +
				1 *
				VCHI_FLAGS_BLOCK_UNTIL_DATA_READ,
							  1 * VCHI_FLAGS_BLOCK_UNTIL_DATA_READ,
							  NULL);
		} else {
			while (count > 0) {