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

staging: bcm2835-audio: remove spaces after cast

Remove instances of unnecessary blank space after cast in bcm2835-vchiq.c
Signed-off-by: default avatarAishwarya Pant <aishpant@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 637e078e
...@@ -125,7 +125,7 @@ static void my_wq_function(struct work_struct *work) ...@@ -125,7 +125,7 @@ static void my_wq_function(struct work_struct *work)
LOG_ERR(" Unexpected work: %p:%d\n", w->alsa_stream, w->cmd); LOG_ERR(" Unexpected work: %p:%d\n", w->alsa_stream, w->cmd);
break; break;
} }
kfree((void *) work); kfree((void *)work);
LOG_DBG(" .. OUT %d\n", ret); LOG_DBG(" .. OUT %d\n", ret);
} }
...@@ -854,7 +854,7 @@ static int bcm2835_audio_write_worker(struct bcm2835_alsa_stream *alsa_stream, ...@@ -854,7 +854,7 @@ static int bcm2835_audio_write_worker(struct bcm2835_alsa_stream *alsa_stream,
NULL); NULL);
} else { } else {
while (count > 0) { while (count > 0) {
int bytes = min((int) m.u.write.max_packet, (int) count); int bytes = min((int)m.u.write.max_packet, (int)count);
status = bcm2835_vchi_msg_queue(instance->vchi_handle[0], status = bcm2835_vchi_msg_queue(instance->vchi_handle[0],
src, bytes); src, bytes);
......
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