mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 0/2] fix typos (import from linux kernel)
@ 2014-10-30 12:30 Antony Pavlov
  2014-10-30 12:30 ` [PATCH 1/2] Typoes: "whith" -> "with" Antony Pavlov
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Antony Pavlov @ 2014-10-30 12:30 UTC (permalink / raw)
  To: barebox

Antony Pavlov (2):
  Typoes:  "whith" -> "with"
  Makefile: fix typos

 Makefile          | 7 +++----
 drivers/mci/mxs.c | 2 +-
 2 files changed, 4 insertions(+), 5 deletions(-)

-- 
2.1.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* [PATCH 1/2] Typoes:  "whith" -> "with"
  2014-10-30 12:30 [PATCH 0/2] fix typos (import from linux kernel) Antony Pavlov
@ 2014-10-30 12:30 ` Antony Pavlov
  2014-10-30 12:30 ` [PATCH 2/2] Makefile: fix typos Antony Pavlov
  2014-11-03  8:18 ` [PATCH 0/2] fix typos (import from linux kernel) Sascha Hauer
  2 siblings, 0 replies; 4+ messages in thread
From: Antony Pavlov @ 2014-10-30 12:30 UTC (permalink / raw)
  To: barebox

This patch is based on linux kernel commit

    commit e1b8513d21845fbeb93d6d2c4973db874385059f
    Author: Robert P. J. Day <rpjday@crashcourse.ca>
    Date:   Sun Feb 3 15:14:02 2008 +0200

        Typoes:  "whith" -> "with"

Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
Cc: Robert P. J. Day <rpjday@crashcourse.ca>
---
 Makefile          | 2 +-
 drivers/mci/mxs.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index d959f57..c5f965e 100644
--- a/Makefile
+++ b/Makefile
@@ -1137,7 +1137,7 @@ endif #ifeq ($(mixed-targets),1)
 # Single targets
 # ---------------------------------------------------------------------------
 # Single targets are compatible with:
-# - build whith mixed source and output
+# - build with mixed source and output
 # - build with separate output dir 'make O=...'
 # - external modules
 #
diff --git a/drivers/mci/mxs.c b/drivers/mci/mxs.c
index 6e02d46..738bde9 100644
--- a/drivers/mci/mxs.c
+++ b/drivers/mci/mxs.c
@@ -152,7 +152,7 @@ static void mxs_mci_setup_timeout(struct mxs_mci_host *mxs_mci, unsigned to)
  * @return 0 on success, negative values else
  *
  * @note This routine uses PIO to read in the data bytes from the FIFO. This
- * may fail whith high clock speeds. If you receive -EIO errors you can try
+ * may fail with high clock speeds. If you receive -EIO errors you can try
  * again with reduced clock speeds.
  */
 static int mxs_mci_read_data(struct mxs_mci_host *mxs_mci, void *buffer, unsigned length)
-- 
2.1.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* [PATCH 2/2] Makefile: fix typos
  2014-10-30 12:30 [PATCH 0/2] fix typos (import from linux kernel) Antony Pavlov
  2014-10-30 12:30 ` [PATCH 1/2] Typoes: "whith" -> "with" Antony Pavlov
@ 2014-10-30 12:30 ` Antony Pavlov
  2014-11-03  8:18 ` [PATCH 0/2] fix typos (import from linux kernel) Sascha Hauer
  2 siblings, 0 replies; 4+ messages in thread
From: Antony Pavlov @ 2014-10-30 12:30 UTC (permalink / raw)
  To: barebox

This patch is based on these linux kernel commits:

    commit d384e35a25445bb60457b7dab8cffe178c6b7ecb
    Author: Linus Nilsson <lajnold@acc.umu.se>
    Date:   Sun Jan 20 17:10:01 2008 +0100

        Makefile: Change typoed 'behavour' to 'behaviour'

    commit fe8d0a41081d6d0912386f3672ccc0bf1d675630
    Author: Kirill Smelkov <kirr@mns.spb.ru>
    Date:   Thu Apr 9 15:34:34 2009 +0400

        kbuild: fix a few typos in top-level Makefile

Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
---
 Makefile | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index c5f965e..8eb50d4 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ NAME = None
 
 # Do not:
 # o  use make's built-in rules and variables
-#    (this increases performance and avoid hard-to-debug behavour);
+#    (this increases performance and avoids hard-to-debug behaviour);
 # o  print "Entering directory ...";
 MAKEFLAGS += -rR --no-print-directory
 
@@ -1211,6 +1211,5 @@ FORCE:
 Makefile: ;
 
 # Declare the contents of the .PHONY variable as phony.  We keep that
-# information in a variable se we can use it in if_changed and friends.
+# information in a variable so we can use it in if_changed and friends.
 .PHONY: $(PHONY)
-
-- 
2.1.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: [PATCH 0/2] fix typos (import from linux kernel)
  2014-10-30 12:30 [PATCH 0/2] fix typos (import from linux kernel) Antony Pavlov
  2014-10-30 12:30 ` [PATCH 1/2] Typoes: "whith" -> "with" Antony Pavlov
  2014-10-30 12:30 ` [PATCH 2/2] Makefile: fix typos Antony Pavlov
@ 2014-11-03  8:18 ` Sascha Hauer
  2 siblings, 0 replies; 4+ messages in thread
From: Sascha Hauer @ 2014-11-03  8:18 UTC (permalink / raw)
  To: Antony Pavlov; +Cc: barebox

On Thu, Oct 30, 2014 at 03:30:37PM +0300, Antony Pavlov wrote:
> Antony Pavlov (2):
>   Typoes:  "whith" -> "with"
>   Makefile: fix typos
> 
>  Makefile          | 7 +++----
>  drivers/mci/mxs.c | 2 +-
>  2 files changed, 4 insertions(+), 5 deletions(-)

Applied, thanks

Sascha

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2014-11-03  8:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-10-30 12:30 [PATCH 0/2] fix typos (import from linux kernel) Antony Pavlov
2014-10-30 12:30 ` [PATCH 1/2] Typoes: "whith" -> "with" Antony Pavlov
2014-10-30 12:30 ` [PATCH 2/2] Makefile: fix typos Antony Pavlov
2014-11-03  8:18 ` [PATCH 0/2] fix typos (import from linux kernel) Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox