mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [Patch] Trivial changes
@ 2015-06-19 12:23 Juergen Borleis
  2015-06-19 12:23 ` [PATCH 1/3] Documentation: fix spelling Juergen Borleis
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Juergen Borleis @ 2015-06-19 12:23 UTC (permalink / raw)
  To: barebox

While already at it, just a few trivial fixes. Change 1/3 and 2/3 are basing
on recent added files.

jbe


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

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

* [PATCH 1/3] Documentation: fix spelling
  2015-06-19 12:23 [Patch] Trivial changes Juergen Borleis
@ 2015-06-19 12:23 ` Juergen Borleis
  2015-06-19 12:23 ` [PATCH 2/3] Documentation: be more precise about the topic Juergen Borleis
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Juergen Borleis @ 2015-06-19 12:23 UTC (permalink / raw)
  To: barebox

Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
---
 Documentation/user/system-reset.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/user/system-reset.rst b/Documentation/user/system-reset.rst
index c2ee409..8ff3963 100644
--- a/Documentation/user/system-reset.rst
+++ b/Documentation/user/system-reset.rst
@@ -49,7 +49,7 @@ But there are some drawbacks within this simple approach.
   currently used clock speeds. But don't rely on it.
 
 To workaround these issues the reset signal triggered by a SoC internal source
-must be 'visible' to the external devices to also reset them like a real POR do.
+must be 'visible' to the external devices to also reset them like a real POR does.
 But many SoCs do not provide such a signal. So you can't use the internal reset
 source if you face one of the above listed issues!
 
-- 
2.1.4


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

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

* [PATCH 2/3] Documentation: be more precise about the topic
  2015-06-19 12:23 [Patch] Trivial changes Juergen Borleis
  2015-06-19 12:23 ` [PATCH 1/3] Documentation: fix spelling Juergen Borleis
@ 2015-06-19 12:23 ` Juergen Borleis
  2015-06-19 12:23 ` [PATCH 3/3] arch/BCM47xx: remove bogus copy'n'paste comment Juergen Borleis
  2015-06-22  5:22 ` [Patch] Trivial changes Sascha Hauer
  3 siblings, 0 replies; 5+ messages in thread
From: Juergen Borleis @ 2015-06-19 12:23 UTC (permalink / raw)
  To: barebox

'system restart' is the correct topic here.

Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
---
 Documentation/user/system-reset.rst | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Documentation/user/system-reset.rst b/Documentation/user/system-reset.rst
index 8ff3963..e76e3a2 100644
--- a/Documentation/user/system-reset.rst
+++ b/Documentation/user/system-reset.rst
@@ -1,11 +1,11 @@
 .. _system_reset:
 
-System Reset
-------------
+System Restart
+--------------
 
-When running the reset command barebox restarts the SoC somehow. Reset can
+When running the reset command barebox restarts the SoC somehow. Restart can
 be done in software, but a more reliable way is to use a hard reset line, which
-really resets the SoC.
+really resets the whole machine.
 The most common way to force such a hard reset is by using a watchdog. Its
 trigger time will be setup as short as possible and after that the software just
 waits for its reset. Very simple and most of the time it does what's expected.
-- 
2.1.4


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

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

* [PATCH 3/3] arch/BCM47xx: remove bogus copy'n'paste comment
  2015-06-19 12:23 [Patch] Trivial changes Juergen Borleis
  2015-06-19 12:23 ` [PATCH 1/3] Documentation: fix spelling Juergen Borleis
  2015-06-19 12:23 ` [PATCH 2/3] Documentation: be more precise about the topic Juergen Borleis
@ 2015-06-19 12:23 ` Juergen Borleis
  2015-06-22  5:22 ` [Patch] Trivial changes Sascha Hauer
  3 siblings, 0 replies; 5+ messages in thread
From: Juergen Borleis @ 2015-06-19 12:23 UTC (permalink / raw)
  To: barebox

Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
---
 arch/mips/mach-bcm47xx/reset.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/arch/mips/mach-bcm47xx/reset.c b/arch/mips/mach-bcm47xx/reset.c
index f1dc68a..00aee19 100644
--- a/arch/mips/mach-bcm47xx/reset.c
+++ b/arch/mips/mach-bcm47xx/reset.c
@@ -15,11 +15,6 @@
  *
  */
 
-/**
- * @file
- * @brief Resetting an malta board
- */
-
 #include <common.h>
 #include <io.h>
 #include <mach/hardware.h>
-- 
2.1.4


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

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

* Re: [Patch] Trivial changes
  2015-06-19 12:23 [Patch] Trivial changes Juergen Borleis
                   ` (2 preceding siblings ...)
  2015-06-19 12:23 ` [PATCH 3/3] arch/BCM47xx: remove bogus copy'n'paste comment Juergen Borleis
@ 2015-06-22  5:22 ` Sascha Hauer
  3 siblings, 0 replies; 5+ messages in thread
From: Sascha Hauer @ 2015-06-22  5:22 UTC (permalink / raw)
  To: Juergen Borleis; +Cc: barebox

On Fri, Jun 19, 2015 at 02:23:46PM +0200, Juergen Borleis wrote:
> While already at it, just a few trivial fixes. Change 1/3 and 2/3 are basing
> on recent added files.

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] 5+ messages in thread

end of thread, other threads:[~2015-06-22  5:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-19 12:23 [Patch] Trivial changes Juergen Borleis
2015-06-19 12:23 ` [PATCH 1/3] Documentation: fix spelling Juergen Borleis
2015-06-19 12:23 ` [PATCH 2/3] Documentation: be more precise about the topic Juergen Borleis
2015-06-19 12:23 ` [PATCH 3/3] arch/BCM47xx: remove bogus copy'n'paste comment Juergen Borleis
2015-06-22  5:22 ` [Patch] Trivial changes Sascha Hauer

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