mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] fixup! exitcall: Add exitcall infrastructure
@ 2015-07-12 10:09 Antony Pavlov
  2015-07-12 10:09 ` [PATCH] fixup! exitcall: move arch_shutdown to " Antony Pavlov
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Antony Pavlov @ 2015-07-12 10:09 UTC (permalink / raw)
  To: barebox; +Cc: Herve Codina

---
fix whitespaces
---
 arch/ppc/boards/pcm030/barebox.lds.S | 2 +-
 arch/ppc/mach-mpc85xx/barebox.lds.S  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/ppc/boards/pcm030/barebox.lds.S b/arch/ppc/boards/pcm030/barebox.lds.S
index dc71464..0e08e05 100644
--- a/arch/ppc/boards/pcm030/barebox.lds.S
+++ b/arch/ppc/boards/pcm030/barebox.lds.S
@@ -111,7 +111,7 @@ SECTIONS
   .barebox_initcalls : { INITCALLS }
   __barebox_initcalls_end = .;
   __initcall_entries = (__barebox_initcalls_end - __barebox_initcalls_start) >> 2;
-  
+
   __barebox_exitcalls_start = .;
   .barebox_exitcalls : { EXITCALLS }
   __barebox_exitcalls_end = .;
diff --git a/arch/ppc/mach-mpc85xx/barebox.lds.S b/arch/ppc/mach-mpc85xx/barebox.lds.S
index f0894a1..1f7f52c 100644
--- a/arch/ppc/mach-mpc85xx/barebox.lds.S
+++ b/arch/ppc/mach-mpc85xx/barebox.lds.S
@@ -108,11 +108,11 @@ SECTIONS
   .barebox_initcalls : { INITCALLS }
   __barebox_initcalls_end = .;
   __initcall_entries = (__barebox_initcalls_end - __barebox_initcalls_start)>>2;
-  
+
   __barebox_exitcalls_start = .;
   .barebox_exitcalls : { EXITCALLS }
   __barebox_exitcalls_end = .;
-  __exitcall_entries = (__barebox_exitcalls_end - __barebox_exitcalls_start)>>2;
+  __exitcall_entries = (__barebox_exitcalls_end - __barebox_exitcalls_start) >> 2;
 
   __usymtab_start = .;
   __usymtab : { BAREBOX_SYMS }
-- 
2.1.4


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

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

* [PATCH] fixup! exitcall: move arch_shutdown to exitcall infrastructure
  2015-07-12 10:09 [PATCH] fixup! exitcall: Add exitcall infrastructure Antony Pavlov
@ 2015-07-12 10:09 ` Antony Pavlov
  2015-07-13  6:28 ` [PATCH] fixup! exitcall: Add " Sascha Hauer
  2015-07-14 15:07 ` codina.herve
  2 siblings, 0 replies; 4+ messages in thread
From: Antony Pavlov @ 2015-07-12 10:09 UTC (permalink / raw)
  To: barebox; +Cc: Herve Codina

---
fix whitespaces
---
 arch/blackfin/include/asm/common.h | 2 --
 arch/blackfin/lib/board.c          | 1 -
 arch/nios2/lib/board.c             | 1 -
 arch/openrisc/lib/board.c          | 1 -
 4 files changed, 5 deletions(-)

diff --git a/arch/blackfin/include/asm/common.h b/arch/blackfin/include/asm/common.h
index 5760fb9..443adf7 100644
--- a/arch/blackfin/include/asm/common.h
+++ b/arch/blackfin/include/asm/common.h
@@ -1,3 +1 @@
-
 /* nothing special */
-
diff --git a/arch/blackfin/lib/board.c b/arch/blackfin/lib/board.c
index 4731887..3a04f28 100644
--- a/arch/blackfin/lib/board.c
+++ b/arch/blackfin/lib/board.c
@@ -46,4 +46,3 @@ static void arch_shutdown(void)
 	icache_disable();
 }
 archshutdown_exitcall(arch_shutdown);
-
diff --git a/arch/nios2/lib/board.c b/arch/nios2/lib/board.c
index c04dda9..537675c 100644
--- a/arch/nios2/lib/board.c
+++ b/arch/nios2/lib/board.c
@@ -30,4 +30,3 @@ void __noreturn nios_start_barebox(void)
 
 	start_barebox();
 }
-
diff --git a/arch/openrisc/lib/board.c b/arch/openrisc/lib/board.c
index ff527e2..25bcc05 100644
--- a/arch/openrisc/lib/board.c
+++ b/arch/openrisc/lib/board.c
@@ -29,4 +29,3 @@ void __noreturn openrisc_start_barebox(void)
 
 	start_barebox();
 }
-
-- 
2.1.4


_______________________________________________
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] fixup! exitcall: Add exitcall infrastructure
  2015-07-12 10:09 [PATCH] fixup! exitcall: Add exitcall infrastructure Antony Pavlov
  2015-07-12 10:09 ` [PATCH] fixup! exitcall: move arch_shutdown to " Antony Pavlov
@ 2015-07-13  6:28 ` Sascha Hauer
  2015-07-14 15:07 ` codina.herve
  2 siblings, 0 replies; 4+ messages in thread
From: Sascha Hauer @ 2015-07-13  6:28 UTC (permalink / raw)
  To: Antony Pavlov; +Cc: Herve Codina, barebox

On Sun, Jul 12, 2015 at 01:09:17PM +0300, Antony Pavlov wrote:
> ---
> fix whitespaces
> ---
>  arch/ppc/boards/pcm030/barebox.lds.S | 2 +-
>  arch/ppc/mach-mpc85xx/barebox.lds.S  | 4 ++--
>  2 files changed, 3 insertions(+), 3 deletions(-)

Applied, thanks. Damn, I thought I caught all whitespace errors.

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

* Re: Re: [PATCH] fixup! exitcall: Add exitcall infrastructure
  2015-07-12 10:09 [PATCH] fixup! exitcall: Add exitcall infrastructure Antony Pavlov
  2015-07-12 10:09 ` [PATCH] fixup! exitcall: move arch_shutdown to " Antony Pavlov
  2015-07-13  6:28 ` [PATCH] fixup! exitcall: Add " Sascha Hauer
@ 2015-07-14 15:07 ` codina.herve
  2 siblings, 0 replies; 4+ messages in thread
From: codina.herve @ 2015-07-14 15:07 UTC (permalink / raw)
  To: Sascha Hauer, Antony Pavlov; +Cc: Herve.CODINA, barebox

>> ---
>> fix whitespaces
>> ---
>>  arch/ppc/boards/pcm030/barebox.lds.S | 2 +-
>>  arch/ppc/mach-mpc85xx/barebox.lds.S  | 4 ++--
>>  2 files changed, 3 insertions(+), 3 deletions(-)
>
>Applied, thanks. Damn, I thought I caught all whitespace errors.

My fault ...

I am very sorry about this trouble.

Herve

>
>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:[~2015-07-14 15:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-12 10:09 [PATCH] fixup! exitcall: Add exitcall infrastructure Antony Pavlov
2015-07-12 10:09 ` [PATCH] fixup! exitcall: move arch_shutdown to " Antony Pavlov
2015-07-13  6:28 ` [PATCH] fixup! exitcall: Add " Sascha Hauer
2015-07-14 15:07 ` codina.herve

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