All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andrea della Porta <sfaragnaus@gmail.com>
To: lee@kernel.org, eric@anholt.net, stefan.wahren@i2se.com,
	gregkh@linuxfoundation.org, f.fainelli@gmail.com,
	rjui@broadcom.com, sbranden@broadcom.com,
	bcm-kernel-feedback-list@broadcom.com,
	linux-rpi-kernel@lists.infradead.org,
	linux-arm-kernel@lists.infradead.org, devel@driverdev.osuosl.org,
	linux-kernel@vger.kernel.org
Subject: [PATCH 3/3] fixed extra space coding issue
Date: Wed, 29 Mar 2017 06:15:37 +0100	[thread overview]
Message-ID: <d0b16544fd6f2a6a736e285cc6f168f50438edb9.1490760735.git.sfaragnaus@gmail.com> (raw)
In-Reply-To: <d34e8125d5819066756e245e5759b39932afafa0.1490760735.git.sfaragnaus@gmail.com>
In-Reply-To: <cover.1490760735.git.sfaragnaus@gmail.com>

Removed an extra spaces at the end of the line

Signed-off-by: Andrea della Porta <sfaragnaus@gmail.com>
---
 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 f1ce5cf..451942a 100644
--- a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c
+++ b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c
@@ -539,7 +539,7 @@ int snd_bcm2835_new_spdif_pcm(struct bcm2835_chip *chip)
 	/* NOTE: this may fail */
 	snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_CONTINUOUS,
 					      snd_dma_continuous_data(GFP_KERNEL),
-					      snd_bcm2835_playback_spdif_hw.buffer_bytes_max, 
+					      snd_bcm2835_playback_spdif_hw.buffer_bytes_max,
 					      snd_bcm2835_playback_spdif_hw.buffer_bytes_max);
 out:
 	mutex_unlock(&chip->audio_mutex);
-- 
2.4.10

WARNING: multiple messages have this Message-ID (diff)
From: sfaragnaus@gmail.com (Andrea della Porta)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 3/3] fixed extra space coding issue
Date: Wed, 29 Mar 2017 06:15:37 +0100	[thread overview]
Message-ID: <d0b16544fd6f2a6a736e285cc6f168f50438edb9.1490760735.git.sfaragnaus@gmail.com> (raw)
In-Reply-To: <d34e8125d5819066756e245e5759b39932afafa0.1490760735.git.sfaragnaus@gmail.com>

Removed an extra spaces at the end of the line

Signed-off-by: Andrea della Porta <sfaragnaus@gmail.com>
---
 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 f1ce5cf..451942a 100644
--- a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c
+++ b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c
@@ -539,7 +539,7 @@ int snd_bcm2835_new_spdif_pcm(struct bcm2835_chip *chip)
 	/* NOTE: this may fail */
 	snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_CONTINUOUS,
 					      snd_dma_continuous_data(GFP_KERNEL),
-					      snd_bcm2835_playback_spdif_hw.buffer_bytes_max, 
+					      snd_bcm2835_playback_spdif_hw.buffer_bytes_max,
 					      snd_bcm2835_playback_spdif_hw.buffer_bytes_max);
 out:
 	mutex_unlock(&chip->audio_mutex);
-- 
2.4.10

  reply	other threads:[~2017-03-29 19:02 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-29  5:15 staging: vc04_services: bcm2835-audio Fixed checkpatch issues Andrea della Porta
2017-03-29  5:15 ` Andrea della Porta
2017-03-29  5:15 ` [PATCH 1/3] Fixed checkpatch warning about unaligned function params Andrea della Porta
2017-03-29  5:15   ` Andrea della Porta
2017-03-29  5:15   ` [PATCH 2/3] fixed codepatch coding style issue, line over 80 Andrea della Porta
2017-03-29  5:15     ` Andrea della Porta
2017-03-29  5:15     ` Andrea della Porta [this message]
2017-03-29  5:15       ` [PATCH 3/3] fixed extra space coding issue Andrea della Porta
2017-04-08 10:57   ` [PATCH 1/3] Fixed checkpatch warning about unaligned function params Greg KH
2017-04-08 10:57     ` Greg KH

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d0b16544fd6f2a6a736e285cc6f168f50438edb9.1490760735.git.sfaragnaus@gmail.com \
    --to=sfaragnaus@gmail.com \
    --cc=bcm-kernel-feedback-list@broadcom.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=eric@anholt.net \
    --cc=f.fainelli@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=lee@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rpi-kernel@lists.infradead.org \
    --cc=rjui@broadcom.com \
    --cc=sbranden@broadcom.com \
    --cc=stefan.wahren@i2se.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.