mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-11 00:40:19 +08:00
staging: bcm2835-audio: remove spaces after cast
Remove instances of unnecessary blank space after cast in bcm2835-vchiq.c 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
637e078eaf
commit
da2ee3eeb8
@@ -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);
|
||||
break;
|
||||
}
|
||||
kfree((void *) work);
|
||||
kfree((void *)work);
|
||||
LOG_DBG(" .. OUT %d\n", ret);
|
||||
}
|
||||
|
||||
@@ -854,7 +854,7 @@ static int bcm2835_audio_write_worker(struct bcm2835_alsa_stream *alsa_stream,
|
||||
NULL);
|
||||
} else {
|
||||
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],
|
||||
src, bytes);
|
||||
|
||||
Reference in New Issue
Block a user