linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH/TRIVIAL 1/4] ARM: l2c: Grammar s/If ... if/If ... is/
@ 2014-11-27 11:05 Geert Uytterhoeven
  2014-11-27 11:05 ` [PATCH/TRIVIAL 2/4] [media] cx24117: Grammar s/if ... if/if " Geert Uytterhoeven
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2014-11-27 11:05 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: linux-kernel, Geert Uytterhoeven, Russell King, linux-arm-kernel

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: linux-arm-kernel@lists.infradead.org
---
 arch/arm/mm/cache-l2x0.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mm/cache-l2x0.c b/arch/arm/mm/cache-l2x0.c
index 5e65ca8dea62cf3f..5216bfe7fd86f557 100644
--- a/arch/arm/mm/cache-l2x0.c
+++ b/arch/arm/mm/cache-l2x0.c
@@ -979,7 +979,7 @@ static int __init l2x0_cache_size_of_parse(const struct device_node *np,
 	/* All these l2 caches have the same line = block size actually */
 	if (!line_size) {
 		if (block_size) {
-			/* If linesize if not given, it is equal to blocksize */
+			/* If linesize is not given, it is equal to blocksize */
 			line_size = block_size;
 		} else {
 			/* Fall back to known size */
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH/TRIVIAL 2/4] [media] cx24117: Grammar s/if ... if/if ... is/
  2014-11-27 11:05 [PATCH/TRIVIAL 1/4] ARM: l2c: Grammar s/If ... if/If ... is/ Geert Uytterhoeven
@ 2014-11-27 11:05 ` Geert Uytterhoeven
  2014-11-27 11:05 ` [PATCH/TRIVIAL 3/4] [SCSI] aic7xxx: " Geert Uytterhoeven
  2014-11-27 11:05 ` [PATCH/TRIVIAL 4/4] jffs2: Drop bogus if in comment Geert Uytterhoeven
  2 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2014-11-27 11:05 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: linux-kernel, Geert Uytterhoeven, Mauro Carvalho Chehab, linux-media

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Cc: linux-media@vger.kernel.org
---
 drivers/media/dvb-frontends/cx24117.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/dvb-frontends/cx24117.c b/drivers/media/dvb-frontends/cx24117.c
index a6c3c9e2e89772ff..acb965ce0358b70e 100644
--- a/drivers/media/dvb-frontends/cx24117.c
+++ b/drivers/media/dvb-frontends/cx24117.c
@@ -459,7 +459,7 @@ static int cx24117_firmware_ondemand(struct dvb_frontend *fe)
 	if (state->priv->skip_fw_load)
 		return 0;
 
-	/* check if firmware if already running */
+	/* check if firmware is already running */
 	if (cx24117_readreg(state, 0xeb) != 0xa) {
 		/* Load firmware */
 		/* request the firmware, this will block until loaded */
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH/TRIVIAL 3/4] [SCSI] aic7xxx: Grammar s/if ... if/if ... is/
  2014-11-27 11:05 [PATCH/TRIVIAL 1/4] ARM: l2c: Grammar s/If ... if/If ... is/ Geert Uytterhoeven
  2014-11-27 11:05 ` [PATCH/TRIVIAL 2/4] [media] cx24117: Grammar s/if ... if/if " Geert Uytterhoeven
@ 2014-11-27 11:05 ` Geert Uytterhoeven
  2014-11-27 11:05 ` [PATCH/TRIVIAL 4/4] jffs2: Drop bogus if in comment Geert Uytterhoeven
  2 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2014-11-27 11:05 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: linux-kernel, Geert Uytterhoeven, Hannes Reinecke, linux-scsi

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Hannes Reinecke <hare@suse.de>
Cc: linux-scsi@vger.kernel.org
---
 drivers/scsi/aic7xxx/aic79xx_core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/aic7xxx/aic79xx_core.c b/drivers/scsi/aic7xxx/aic79xx_core.c
index 0bcacf71aef814fe..97f2accd3dbb48ac 100644
--- a/drivers/scsi/aic7xxx/aic79xx_core.c
+++ b/drivers/scsi/aic7xxx/aic79xx_core.c
@@ -1298,7 +1298,7 @@ rescan_fifos:
 
 	/*
 	 * Wait for any inprogress DMA to complete and clear DMA state
-	 * if this if for an SCB in the qinfifo.
+	 * if this is for an SCB in the qinfifo.
 	 */
 	while (((ccscbctl = ahd_inb(ahd, CCSCBCTL)) & (CCARREN|CCSCBEN)) != 0) {
 
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH/TRIVIAL 4/4] jffs2: Drop bogus if in comment
  2014-11-27 11:05 [PATCH/TRIVIAL 1/4] ARM: l2c: Grammar s/If ... if/If ... is/ Geert Uytterhoeven
  2014-11-27 11:05 ` [PATCH/TRIVIAL 2/4] [media] cx24117: Grammar s/if ... if/if " Geert Uytterhoeven
  2014-11-27 11:05 ` [PATCH/TRIVIAL 3/4] [SCSI] aic7xxx: " Geert Uytterhoeven
@ 2014-11-27 11:05 ` Geert Uytterhoeven
  2014-11-29  2:24   ` Brian Norris
  2 siblings, 1 reply; 5+ messages in thread
From: Geert Uytterhoeven @ 2014-11-27 11:05 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: linux-kernel, Geert Uytterhoeven, David Woodhouse, linux-mtd

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: linux-mtd@lists.infradead.org
---
 fs/jffs2/readinode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/jffs2/readinode.c b/fs/jffs2/readinode.c
index 386303dca382e636..dddbde4f56f4e32a 100644
--- a/fs/jffs2/readinode.c
+++ b/fs/jffs2/readinode.c
@@ -224,7 +224,7 @@ static int jffs2_add_tn_to_tree(struct jffs2_sb_info *c,
 
 	dbg_readinode("insert fragment %#04x-%#04x, ver %u at %08x\n", tn->fn->ofs, fn_end, tn->version, ref_offset(tn->fn->raw));
 
-	/* If a node has zero dsize, we only have to keep if it if it might be the
+	/* If a node has zero dsize, we only have to keep it if it might be the
 	   node with highest version -- i.e. the one which will end up as f->metadata.
 	   Note that such nodes won't be REF_UNCHECKED since there are no data to
 	   check anyway. */
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH/TRIVIAL 4/4] jffs2: Drop bogus if in comment
  2014-11-27 11:05 ` [PATCH/TRIVIAL 4/4] jffs2: Drop bogus if in comment Geert Uytterhoeven
@ 2014-11-29  2:24   ` Brian Norris
  0 siblings, 0 replies; 5+ messages in thread
From: Brian Norris @ 2014-11-29  2:24 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Jiri Kosina, linux-mtd, David Woodhouse, linux-kernel

On Thu, Nov 27, 2014 at 12:05:46PM +0100, Geert Uytterhoeven wrote:
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> Cc: David Woodhouse <dwmw2@infradead.org>
> Cc: linux-mtd@lists.infradead.org

Applied to l2-mtd.git

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-11-29  2:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-11-27 11:05 [PATCH/TRIVIAL 1/4] ARM: l2c: Grammar s/If ... if/If ... is/ Geert Uytterhoeven
2014-11-27 11:05 ` [PATCH/TRIVIAL 2/4] [media] cx24117: Grammar s/if ... if/if " Geert Uytterhoeven
2014-11-27 11:05 ` [PATCH/TRIVIAL 3/4] [SCSI] aic7xxx: " Geert Uytterhoeven
2014-11-27 11:05 ` [PATCH/TRIVIAL 4/4] jffs2: Drop bogus if in comment Geert Uytterhoeven
2014-11-29  2:24   ` Brian Norris

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).