From 15411ed5c6bc98d19f85a15239e9abd7d5cd7eee Mon Sep 17 00:00:00 2001 From: Narcisa Ana Maria Vasile Date: Sun, 26 Feb 2017 19:47:51 +0200 Subject: [PATCH] staging: bcm2835-audio: Fixed spacing around '&' This was reported by checkpatch.pl Signed-off-by: Narcisa Ana Maria Vasile Acked-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c index 76d85c51b5a0..d60d7025b231 100644 --- a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c +++ b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c @@ -90,7 +90,7 @@ void bcm2835_playback_fifo(struct bcm2835_alsa_stream *alsa_stream) frames_to_bytes(alsa_stream->substream->runtime, alsa_stream->substream->runtime->status->hw_ptr), new_period); if (alsa_stream->buffer_size) { - alsa_stream->pos += consumed &~(1 << 30); + alsa_stream->pos += consumed & ~(1 << 30); alsa_stream->pos %= alsa_stream->buffer_size; } -- 2.11.0