U-Boot
Threads by month
- ----- 2025 -----
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2002 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2001 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2000 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
May 2009
- 178 participants
- 436 discussions

[U-Boot] [PATCH] 74xx_7xx: Fix rounding problem in CPU frequency calculation
by Stefan Roese 15 May '09
by Stefan Roese 15 May '09
15 May '09
This patch fixes a problem in the CPU frequency calculation. Without it
a 798MHz CPU is displayed as 368.503 MHz. And with it it's 798 MHz.
Signed-off-by: Stefan Roese <sr(a)denx.de>
---
cpu/74xx_7xx/speed.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/cpu/74xx_7xx/speed.c b/cpu/74xx_7xx/speed.c
index bc33a67..f2fdcd5 100644
--- a/cpu/74xx_7xx/speed.c
+++ b/cpu/74xx_7xx/speed.c
@@ -149,8 +149,8 @@ int get_clocks (void)
case CPU_750GX:
case CPU_750FX:
- clock = gd->bus_clk *
- hid1_fx_multipliers_x_10[get_hid1 () >> 27] / 10;
+ clock = (gd->bus_clk / 10) *
+ hid1_fx_multipliers_x_10[get_hid1 () >> 27];
break;
case CPU_7450:
--
1.6.2.5
2
1

[U-Boot] [PATCH 1/4 v4] console.h: remove unused prototype 'console_realloc'
by Jean-Christophe PLAGNIOL-VILLARD 15 May '09
by Jean-Christophe PLAGNIOL-VILLARD 15 May '09
15 May '09
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj(a)jcrosoft.com>
---
V4
update commit message as ask by Wolfgang
include/console.h | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/include/console.h b/include/console.h
index 06ec32a..bc8b139 100644
--- a/include/console.h
+++ b/include/console.h
@@ -33,6 +33,4 @@
extern device_t *stdio_devices[] ;
extern char *stdio_names[MAX_FILES] ;
-int console_realloc(int top);
-
#endif
--
1.6.1.3
2
4

[U-Boot] [PATCH 1/1] api: remove un-needed ifdef CONFIG_API already handle by the Makefile
by Jean-Christophe PLAGNIOL-VILLARD 15 May '09
by Jean-Christophe PLAGNIOL-VILLARD 15 May '09
15 May '09
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj(a)jcrosoft.com>
---
api/api.c | 5 -----
api/api_net.c | 5 -----
api/api_platform-arm.c | 3 ---
api/api_platform-ppc.c | 5 -----
api/api_storage.c | 5 -----
5 files changed, 0 insertions(+), 23 deletions(-)
diff --git a/api/api.c b/api/api.c
index f51ebb7..385a7e3 100644
--- a/api/api.c
+++ b/api/api.c
@@ -24,9 +24,6 @@
*/
#include <config.h>
-
-#if defined(CONFIG_API)
-
#include <command.h>
#include <common.h>
#include <malloc.h>
@@ -665,5 +662,3 @@ void platform_set_mr(struct sys_info *si, unsigned long start, unsigned long siz
return;
}
}
-
-#endif /* CONFIG_API */
diff --git a/api/api_net.c b/api/api_net.c
index 9611ab0..afe072e 100644
--- a/api/api_net.c
+++ b/api/api_net.c
@@ -24,9 +24,6 @@
*/
#include <config.h>
-
-#if defined(CONFIG_API)
-
#include <common.h>
#include <net.h>
#include <linux/types.h>
@@ -109,5 +106,3 @@ int dev_read_net(void *cookie, void *buf, int len)
return eth_receive(buf, len);
}
-
-#endif /* CONFIG_API */
diff --git a/api/api_platform-arm.c b/api/api_platform-arm.c
index ca15ca5..fffaa1e 100644
--- a/api/api_platform-arm.c
+++ b/api/api_platform-arm.c
@@ -28,9 +28,6 @@
*/
#include <config.h>
-
-#if defined(CONFIG_API)
-
#include <linux/types.h>
#include <api_public.h>
diff --git a/api/api_platform-ppc.c b/api/api_platform-ppc.c
index 611a01b..bfcc417 100644
--- a/api/api_platform-ppc.c
+++ b/api/api_platform-ppc.c
@@ -28,9 +28,6 @@
*/
#include <config.h>
-
-#if defined(CONFIG_API)
-
#include <linux/types.h>
#include <api_public.h>
@@ -75,5 +72,3 @@ int platform_sys_info(struct sys_info *si)
return 1;
}
-
-#endif /* CONFIG_API */
diff --git a/api/api_storage.c b/api/api_storage.c
index 6fac98b..c535712 100644
--- a/api/api_storage.c
+++ b/api/api_storage.c
@@ -24,9 +24,6 @@
*/
#include <config.h>
-
-#if defined(CONFIG_API)
-
#include <common.h>
#include <api_public.h>
@@ -391,5 +388,3 @@ lbasize_t dev_read_stor(void *cookie, void *buf, lbasize_t len, lbastart_t start
return (dd->block_read(dev_stor_index(dd), start, len, buf));
}
-
-#endif /* CONFIG_API */
--
1.6.1.3
2
1
Signed-off-by: Detlev Zundel <dzu(a)denx.de>
---
CREDITS | 2 +-
MAINTAINERS | 2 +-
board/apollon/u-boot.lds | 2 +-
board/armltd/integratorap/u-boot.lds.template | 2 +-
board/armltd/integratorcp/u-boot.lds.template | 2 +-
board/armltd/versatile/u-boot.lds | 2 +-
board/atmel/at91rm9200dk/u-boot.lds | 2 +-
board/atmel/at91rm9200ek/u-boot.lds | 2 +-
board/cmc_pu2/u-boot.lds | 2 +-
board/csb637/u-boot.lds | 2 +-
board/davedenx/qong/u-boot.lds | 2 +-
board/davinci/dvevm/config.mk | 2 +-
board/davinci/dvevm/u-boot.lds | 2 +-
board/davinci/schmoogie/config.mk | 2 +-
board/davinci/schmoogie/u-boot.lds | 2 +-
board/davinci/sffsdr/config.mk | 2 +-
board/davinci/sffsdr/u-boot.lds | 2 +-
board/davinci/sonata/config.mk | 2 +-
board/davinci/sonata/u-boot.lds | 2 +-
board/esd/common/auto_update.c | 2 +-
board/freescale/mx31ads/u-boot.lds | 2 +-
board/imx31_litekit/u-boot.lds | 2 +-
board/imx31_phycore/u-boot.lds | 2 +-
board/kb9202/u-boot.lds | 2 +-
board/lpd7a40x/flash.c | 2 +-
board/lpd7a40x/lpd7a40x.c | 2 +-
board/lpd7a40x/u-boot.lds | 2 +-
board/m501sk/u-boot.lds | 2 +-
board/mp2usb/u-boot.lds | 2 +-
board/mpl/vcma9/u-boot.lds | 2 +-
board/netstar/eeprom.lds | 2 +-
board/netstar/u-boot.lds | 2 +-
board/ns9750dev/u-boot.lds | 2 +-
board/omap1510inn/config.mk | 2 +-
board/omap1510inn/u-boot.lds | 2 +-
board/omap1610inn/config.mk | 2 +-
board/omap1610inn/u-boot.lds | 2 +-
board/omap2420h4/u-boot.lds | 2 +-
board/omap3/beagle/u-boot.lds | 2 +-
board/omap3/evm/u-boot.lds | 2 +-
board/omap3/overo/u-boot.lds | 2 +-
board/omap3/pandora/u-boot.lds | 2 +-
board/omap3/zoom1/u-boot.lds | 2 +-
board/omap5912osk/config.mk | 2 +-
board/omap5912osk/u-boot.lds | 2 +-
board/omap730p2/config.mk | 2 +-
board/omap730p2/u-boot.lds | 2 +-
board/samsung/smdk2400/config.mk | 2 +-
board/samsung/smdk2400/flash.c | 2 +-
board/samsung/smdk2400/lowlevel_init.S | 2 +-
board/samsung/smdk2400/smdk2400.c | 2 +-
board/samsung/smdk2400/u-boot.lds | 2 +-
board/samsung/smdk2410/config.mk | 2 +-
board/samsung/smdk2410/u-boot.lds | 2 +-
board/samsung/smdk6400/config.mk | 2 +-
board/samsung/smdk6400/u-boot-nand.lds | 2 +-
board/sbc2410x/config.mk | 2 +-
board/sbc2410x/u-boot.lds | 2 +-
board/st/nmdk8815/u-boot.lds | 2 +-
board/trab/auto_update.c | 2 +-
board/trab/config.mk | 2 +-
board/trab/flash.c | 2 +-
board/trab/lowlevel_init.S | 2 +-
board/trab/rs485.c | 2 +-
board/trab/rs485.h | 2 +-
board/trab/trab.c | 2 +-
board/trab/u-boot.lds | 2 +-
board/voiceblue/eeprom.lds | 2 +-
board/voiceblue/u-boot.lds | 2 +-
common/usb_storage.c | 2 +-
cpu/arm1136/config.mk | 2 +-
cpu/arm1136/cpu.c | 2 +-
cpu/arm1136/omap24xx/interrupts.c | 2 +-
cpu/arm1136/omap24xx/start.S | 2 +-
cpu/arm1136/start.S | 2 +-
cpu/arm1176/config.mk | 2 +-
cpu/arm1176/cpu.c | 2 +-
cpu/arm1176/s3c64xx/config.mk | 2 +-
cpu/arm1176/s3c64xx/interrupts.c | 2 +-
cpu/arm920t/config.mk | 2 +-
cpu/arm920t/cpu.c | 2 +-
cpu/arm920t/imx/interrupts.c | 2 +-
cpu/arm920t/interrupts.c | 2 +-
cpu/arm920t/s3c24x0/interrupts.c | 2 +-
cpu/arm920t/s3c24x0/usb_ohci.c | 2 +-
cpu/arm920t/start.S | 2 +-
cpu/arm925t/config.mk | 2 +-
cpu/arm925t/cpu.c | 2 +-
cpu/arm925t/interrupts.c | 2 +-
cpu/arm925t/start.S | 2 +-
cpu/arm926ejs/at91/u-boot.lds | 2 +-
cpu/arm926ejs/config.mk | 2 +-
cpu/arm926ejs/cpu.c | 2 +-
cpu/arm926ejs/davinci/timer.c | 2 +-
cpu/arm926ejs/interrupts.c | 2 +-
cpu/arm926ejs/nomadik/timer.c | 2 +-
cpu/arm926ejs/omap/reset.S | 2 +-
cpu/arm926ejs/omap/timer.c | 2 +-
cpu/arm926ejs/start.S | 2 +-
cpu/arm926ejs/versatile/reset.S | 2 +-
cpu/arm926ejs/versatile/timer.c | 2 +-
cpu/arm946es/config.mk | 2 +-
cpu/arm946es/cpu.c | 2 +-
cpu/arm946es/interrupts.c | 2 +-
cpu/arm946es/start.S | 2 +-
cpu/arm_cortexa8/config.mk | 2 +-
cpu/arm_cortexa8/cpu.c | 2 +-
cpu/arm_cortexa8/omap3/config.mk | 2 +-
cpu/arm_cortexa8/omap3/interrupts.c | 2 +-
cpu/arm_cortexa8/start.S | 2 +-
cpu/arm_intcm/config.mk | 2 +-
cpu/arm_intcm/cpu.c | 2 +-
cpu/arm_intcm/start.S | 2 +-
cpu/lh7a40x/config.mk | 2 +-
cpu/lh7a40x/cpu.c | 2 +-
cpu/lh7a40x/interrupts.c | 2 +-
cpu/lh7a40x/serial.c | 2 +-
cpu/lh7a40x/start.S | 2 +-
cpu/mips/au1x00_usb_ohci.c | 2 +-
cpu/mpc5xxx/usb_ohci.c | 2 +-
cpu/ppc4xx/usb_ohci.c | 2 +-
drivers/serial/s3c64xx.c | 2 +-
drivers/serial/serial_s3c24x0.c | 2 +-
drivers/usb/host/isp116x-hcd.c | 2 +-
drivers/usb/host/ohci-hcd.c | 2 +-
include/asm-arm/arch-s3c24x0/memory.h | 2 +-
include/configs/VCMA9.h | 2 +-
include/configs/sbc2410x.h | 2 +-
include/configs/smdk2400.h | 2 +-
include/configs/smdk2410.h | 2 +-
include/configs/smdk6400.h | 2 +-
include/configs/trab.h | 2 +-
lib_arm/interrupts.c | 2 +-
lib_arm/reset.c | 2 +-
nand_spl/board/samsung/smdk6400/u-boot.lds | 2 +-
135 files changed, 135 insertions(+), 135 deletions(-)
diff --git a/CREDITS b/CREDITS
index 9ddf0d2..2471029 100644
--- a/CREDITS
+++ b/CREDITS
@@ -222,7 +222,7 @@ E: mpfj(a)mimc.co.uk
D: Port to MIMC200 board
N: Gary Jennejohn
-E: garyj(a)jennejohn.org, gj(a)denx.de
+E: garyj(a)jennejohn.org
D: Support for Samsung ARM920T S3C2400X, ARM920T "TRAB"
W: www.denx.de
diff --git a/MAINTAINERS b/MAINTAINERS
index 6bb03b4..241790f 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -548,7 +548,7 @@ Grazvydas Ignotas <notasas(a)gmail.com>
omap3_pandora ARM CORTEX-A8 (OMAP3xx SoC)
-Gary Jennejohn <gj(a)denx.de>
+Gary Jennejohn <garyj(a)denx.de>
smdk2400 ARM920T
trab ARM920T
diff --git a/board/apollon/u-boot.lds b/board/apollon/u-boot.lds
index 7fb7e04..50ad16b 100644
--- a/board/apollon/u-boot.lds
+++ b/board/apollon/u-boot.lds
@@ -7,7 +7,7 @@
* Copyright (c) 2004 Texas Instruments
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/armltd/integratorap/u-boot.lds.template b/board/armltd/integratorap/u-boot.lds.template
index 0ec8087..e51c670 100644
--- a/board/armltd/integratorap/u-boot.lds.template
+++ b/board/armltd/integratorap/u-boot.lds.template
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/armltd/integratorcp/u-boot.lds.template b/board/armltd/integratorcp/u-boot.lds.template
index 0ec8087..e51c670 100644
--- a/board/armltd/integratorcp/u-boot.lds.template
+++ b/board/armltd/integratorcp/u-boot.lds.template
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/armltd/versatile/u-boot.lds b/board/armltd/versatile/u-boot.lds
index 48c2613..0477124 100644
--- a/board/armltd/versatile/u-boot.lds
+++ b/board/armltd/versatile/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/atmel/at91rm9200dk/u-boot.lds b/board/atmel/at91rm9200dk/u-boot.lds
index 33363c2..b8cacf1 100644
--- a/board/atmel/at91rm9200dk/u-boot.lds
+++ b/board/atmel/at91rm9200dk/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/atmel/at91rm9200ek/u-boot.lds b/board/atmel/at91rm9200ek/u-boot.lds
index 045e849..c35896b 100644
--- a/board/atmel/at91rm9200ek/u-boot.lds
+++ b/board/atmel/at91rm9200ek/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/cmc_pu2/u-boot.lds b/board/cmc_pu2/u-boot.lds
index 33363c2..b8cacf1 100644
--- a/board/cmc_pu2/u-boot.lds
+++ b/board/cmc_pu2/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/csb637/u-boot.lds b/board/csb637/u-boot.lds
index 3eae0e2..12aca2e 100644
--- a/board/csb637/u-boot.lds
+++ b/board/csb637/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/davedenx/qong/u-boot.lds b/board/davedenx/qong/u-boot.lds
index 04e0642..a21efbd 100644
--- a/board/davedenx/qong/u-boot.lds
+++ b/board/davedenx/qong/u-boot.lds
@@ -2,7 +2,7 @@
* (C) Copyright 2009
* Ilya Yanok, Emcraft Systems Ltd, <yanok(a)emcraft.com>
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/davinci/dvevm/config.mk b/board/davinci/dvevm/config.mk
index aa89d0e..c24ced7 100644
--- a/board/davinci/dvevm/config.mk
+++ b/board/davinci/dvevm/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
# David Mueller, ELSOFT AG, <d.mueller(a)elsoft.ch>
#
# (C) Copyright 2003
diff --git a/board/davinci/dvevm/u-boot.lds b/board/davinci/dvevm/u-boot.lds
index 4d50f2c..e50b8d4 100644
--- a/board/davinci/dvevm/u-boot.lds
+++ b/board/davinci/dvevm/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/davinci/schmoogie/config.mk b/board/davinci/schmoogie/config.mk
index aa89d0e..c24ced7 100644
--- a/board/davinci/schmoogie/config.mk
+++ b/board/davinci/schmoogie/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
# David Mueller, ELSOFT AG, <d.mueller(a)elsoft.ch>
#
# (C) Copyright 2003
diff --git a/board/davinci/schmoogie/u-boot.lds b/board/davinci/schmoogie/u-boot.lds
index 4d50f2c..e50b8d4 100644
--- a/board/davinci/schmoogie/u-boot.lds
+++ b/board/davinci/schmoogie/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/davinci/sffsdr/config.mk b/board/davinci/sffsdr/config.mk
index f3b23d1..31a1c9e 100644
--- a/board/davinci/sffsdr/config.mk
+++ b/board/davinci/sffsdr/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
# David Mueller, ELSOFT AG, <d.mueller(a)elsoft.ch>
#
# Copyright (C) 2008 Lyrtech <www.lyrtech.com>
diff --git a/board/davinci/sffsdr/u-boot.lds b/board/davinci/sffsdr/u-boot.lds
index 4d50f2c..e50b8d4 100644
--- a/board/davinci/sffsdr/u-boot.lds
+++ b/board/davinci/sffsdr/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/davinci/sonata/config.mk b/board/davinci/sonata/config.mk
index aa89d0e..c24ced7 100644
--- a/board/davinci/sonata/config.mk
+++ b/board/davinci/sonata/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
# David Mueller, ELSOFT AG, <d.mueller(a)elsoft.ch>
#
# (C) Copyright 2003
diff --git a/board/davinci/sonata/u-boot.lds b/board/davinci/sonata/u-boot.lds
index 4d50f2c..e50b8d4 100644
--- a/board/davinci/sonata/u-boot.lds
+++ b/board/davinci/sonata/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/esd/common/auto_update.c b/board/esd/common/auto_update.c
index 4ea373a..8593125 100644
--- a/board/esd/common/auto_update.c
+++ b/board/esd/common/auto_update.c
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2003-2004
- * Gary Jennejohn, DENX Software Engineering, gj(a)denx.de.
+ * Gary Jennejohn, DENX Software Engineering, garyj(a)denx.de.
* Stefan Roese, esd gmbh germany, stefan.roese(a)esd-electronics.com
*
* See file CREDITS for list of people who contributed to this
diff --git a/board/freescale/mx31ads/u-boot.lds b/board/freescale/mx31ads/u-boot.lds
index 079184e..3182aa6 100644
--- a/board/freescale/mx31ads/u-boot.lds
+++ b/board/freescale/mx31ads/u-boot.lds
@@ -3,7 +3,7 @@
* Copyright (c) 2004 Texas Instruments
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/imx31_litekit/u-boot.lds b/board/imx31_litekit/u-boot.lds
index f840017..19d40da 100644
--- a/board/imx31_litekit/u-boot.lds
+++ b/board/imx31_litekit/u-boot.lds
@@ -3,7 +3,7 @@
* Copyright (c) 2004 Texas Instruments
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/imx31_phycore/u-boot.lds b/board/imx31_phycore/u-boot.lds
index f840017..19d40da 100644
--- a/board/imx31_phycore/u-boot.lds
+++ b/board/imx31_phycore/u-boot.lds
@@ -3,7 +3,7 @@
* Copyright (c) 2004 Texas Instruments
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/kb9202/u-boot.lds b/board/kb9202/u-boot.lds
index 3eae0e2..12aca2e 100644
--- a/board/kb9202/u-boot.lds
+++ b/board/kb9202/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/lpd7a40x/flash.c b/board/lpd7a40x/flash.c
index e3558d2..a13b827 100644
--- a/board/lpd7a40x/flash.c
+++ b/board/lpd7a40x/flash.c
@@ -4,7 +4,7 @@
* Marius Groeger <mgroeger(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/lpd7a40x/lpd7a40x.c b/board/lpd7a40x/lpd7a40x.c
index e12bbf0..7edb65e 100644
--- a/board/lpd7a40x/lpd7a40x.c
+++ b/board/lpd7a40x/lpd7a40x.c
@@ -4,7 +4,7 @@
* Marius Groeger <mgroeger(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/lpd7a40x/u-boot.lds b/board/lpd7a40x/u-boot.lds
index b98ed95..0914be7 100644
--- a/board/lpd7a40x/u-boot.lds
+++ b/board/lpd7a40x/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/m501sk/u-boot.lds b/board/m501sk/u-boot.lds
index 2247c37..f674bf6 100644
--- a/board/m501sk/u-boot.lds
+++ b/board/m501sk/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/mp2usb/u-boot.lds b/board/mp2usb/u-boot.lds
index 3eae0e2..12aca2e 100644
--- a/board/mp2usb/u-boot.lds
+++ b/board/mp2usb/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/mpl/vcma9/u-boot.lds b/board/mpl/vcma9/u-boot.lds
index 33363c2..b8cacf1 100644
--- a/board/mpl/vcma9/u-boot.lds
+++ b/board/mpl/vcma9/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/netstar/eeprom.lds b/board/netstar/eeprom.lds
index 132476d..1e48494 100644
--- a/board/netstar/eeprom.lds
+++ b/board/netstar/eeprom.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
* (C) Copyright 2005
* Ladislav Michl, 2N Telekomunikace, <michl(a)2n.cz>
*
diff --git a/board/netstar/u-boot.lds b/board/netstar/u-boot.lds
index 6a5510a..65a23a7 100644
--- a/board/netstar/u-boot.lds
+++ b/board/netstar/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/ns9750dev/u-boot.lds b/board/ns9750dev/u-boot.lds
index b7fc19c..b4823f7 100644
--- a/board/ns9750dev/u-boot.lds
+++ b/board/ns9750dev/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/omap1510inn/config.mk b/board/omap1510inn/config.mk
index 7b24780..9cd7424 100644
--- a/board/omap1510inn/config.mk
+++ b/board/omap1510inn/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
# David Mueller, ELSOFT AG, <d.mueller(a)elsoft.ch>
#
# (C) Copyright 2003
diff --git a/board/omap1510inn/u-boot.lds b/board/omap1510inn/u-boot.lds
index 13b3643..eba0a3e 100644
--- a/board/omap1510inn/u-boot.lds
+++ b/board/omap1510inn/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/omap1610inn/config.mk b/board/omap1610inn/config.mk
index 80976ef..1c5b7b5 100644
--- a/board/omap1610inn/config.mk
+++ b/board/omap1610inn/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
# David Mueller, ELSOFT AG, <d.mueller(a)elsoft.ch>
#
# (C) Copyright 2003
diff --git a/board/omap1610inn/u-boot.lds b/board/omap1610inn/u-boot.lds
index 4d50f2c..e50b8d4 100644
--- a/board/omap1610inn/u-boot.lds
+++ b/board/omap1610inn/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/omap2420h4/u-boot.lds b/board/omap2420h4/u-boot.lds
index 46535dd..22d93b4 100644
--- a/board/omap2420h4/u-boot.lds
+++ b/board/omap2420h4/u-boot.lds
@@ -3,7 +3,7 @@
* Copyright (c) 2004 Texas Instruments
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/omap3/beagle/u-boot.lds b/board/omap3/beagle/u-boot.lds
index 66a8925..3af04a2 100644
--- a/board/omap3/beagle/u-boot.lds
+++ b/board/omap3/beagle/u-boot.lds
@@ -3,7 +3,7 @@
* Copyright (c) 2004 Texas Instruments
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/omap3/evm/u-boot.lds b/board/omap3/evm/u-boot.lds
index 66a8925..3af04a2 100644
--- a/board/omap3/evm/u-boot.lds
+++ b/board/omap3/evm/u-boot.lds
@@ -3,7 +3,7 @@
* Copyright (c) 2004 Texas Instruments
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/omap3/overo/u-boot.lds b/board/omap3/overo/u-boot.lds
index 66a8925..3af04a2 100644
--- a/board/omap3/overo/u-boot.lds
+++ b/board/omap3/overo/u-boot.lds
@@ -3,7 +3,7 @@
* Copyright (c) 2004 Texas Instruments
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/omap3/pandora/u-boot.lds b/board/omap3/pandora/u-boot.lds
index 66a8925..3af04a2 100644
--- a/board/omap3/pandora/u-boot.lds
+++ b/board/omap3/pandora/u-boot.lds
@@ -3,7 +3,7 @@
* Copyright (c) 2004 Texas Instruments
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/omap3/zoom1/u-boot.lds b/board/omap3/zoom1/u-boot.lds
index 0eb318b..a49f572 100644
--- a/board/omap3/zoom1/u-boot.lds
+++ b/board/omap3/zoom1/u-boot.lds
@@ -3,7 +3,7 @@
* Copyright (c) 2004-2008 Texas Instruments
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/omap5912osk/config.mk b/board/omap5912osk/config.mk
index 0375796..5362a4f 100644
--- a/board/omap5912osk/config.mk
+++ b/board/omap5912osk/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002-2004
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
# David Mueller, ELSOFT AG, <d.mueller(a)elsoft.ch>
#
# (C) Copyright 2003
diff --git a/board/omap5912osk/u-boot.lds b/board/omap5912osk/u-boot.lds
index 3132b9a..b76b51a 100644
--- a/board/omap5912osk/u-boot.lds
+++ b/board/omap5912osk/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002-2004
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/omap730p2/config.mk b/board/omap730p2/config.mk
index 16bff6f..6940320 100644
--- a/board/omap730p2/config.mk
+++ b/board/omap730p2/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
# David Mueller, ELSOFT AG, <d.mueller(a)elsoft.ch>
#
# (C) Copyright 2003
diff --git a/board/omap730p2/u-boot.lds b/board/omap730p2/u-boot.lds
index 4d50f2c..e50b8d4 100644
--- a/board/omap730p2/u-boot.lds
+++ b/board/omap730p2/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/samsung/smdk2400/config.mk b/board/samsung/smdk2400/config.mk
index 82400bf..4e019e3 100644
--- a/board/samsung/smdk2400/config.mk
+++ b/board/samsung/smdk2400/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
#
# SAMSUNG board with S3C2400X (ARM920T) CPU
#
diff --git a/board/samsung/smdk2400/flash.c b/board/samsung/smdk2400/flash.c
index 9eee60d..46b5786 100644
--- a/board/samsung/smdk2400/flash.c
+++ b/board/samsung/smdk2400/flash.c
@@ -4,7 +4,7 @@
* Marius Groeger <mgroeger(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/samsung/smdk2400/lowlevel_init.S b/board/samsung/smdk2400/lowlevel_init.S
index a7959f3..9c808c0 100644
--- a/board/samsung/smdk2400/lowlevel_init.S
+++ b/board/samsung/smdk2400/lowlevel_init.S
@@ -6,7 +6,7 @@
*
* Modified for the Samsung development board by
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/samsung/smdk2400/smdk2400.c b/board/samsung/smdk2400/smdk2400.c
index 4d1f1a6..0b82070 100644
--- a/board/samsung/smdk2400/smdk2400.c
+++ b/board/samsung/smdk2400/smdk2400.c
@@ -4,7 +4,7 @@
* Marius Groeger <mgroeger(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/samsung/smdk2400/u-boot.lds b/board/samsung/smdk2400/u-boot.lds
index 33363c2..b8cacf1 100644
--- a/board/samsung/smdk2400/u-boot.lds
+++ b/board/samsung/smdk2400/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/samsung/smdk2410/config.mk b/board/samsung/smdk2410/config.mk
index 1af85da..3642b0a 100644
--- a/board/samsung/smdk2410/config.mk
+++ b/board/samsung/smdk2410/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
# David Mueller, ELSOFT AG, <d.mueller(a)elsoft.ch>
#
# SAMSUNG SMDK2410 board with S3C2410X (ARM920T) cpu
diff --git a/board/samsung/smdk2410/u-boot.lds b/board/samsung/smdk2410/u-boot.lds
index 33363c2..b8cacf1 100644
--- a/board/samsung/smdk2410/u-boot.lds
+++ b/board/samsung/smdk2410/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/samsung/smdk6400/config.mk b/board/samsung/smdk6400/config.mk
index 298d387..0255a07 100644
--- a/board/samsung/smdk6400/config.mk
+++ b/board/samsung/smdk6400/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
# David Mueller, ELSOFT AG, <d.mueller(a)elsoft.ch>
#
# (C) Copyright 2008
diff --git a/board/samsung/smdk6400/u-boot-nand.lds b/board/samsung/smdk6400/u-boot-nand.lds
index b868fdd..a074420 100644
--- a/board/samsung/smdk6400/u-boot-nand.lds
+++ b/board/samsung/smdk6400/u-boot-nand.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* (C) Copyright 2008
* Guennadi Liakhovetki, DENX Software Engineering, <lg(a)denx.de>
diff --git a/board/sbc2410x/config.mk b/board/sbc2410x/config.mk
index f244e64..dc59d08 100644
--- a/board/sbc2410x/config.mk
+++ b/board/sbc2410x/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
# David Mueller, ELSOFT AG, <d.mueller(a)elsoft.ch>
#
# SAMSUNG SMDK2410 board with S3C2410X (ARM920T) cpu
diff --git a/board/sbc2410x/u-boot.lds b/board/sbc2410x/u-boot.lds
index 3eae0e2..12aca2e 100644
--- a/board/sbc2410x/u-boot.lds
+++ b/board/sbc2410x/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/st/nmdk8815/u-boot.lds b/board/st/nmdk8815/u-boot.lds
index c2adbab..0925e4f 100644
--- a/board/st/nmdk8815/u-boot.lds
+++ b/board/st/nmdk8815/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/trab/auto_update.c b/board/trab/auto_update.c
index 9932790..bcb8505 100644
--- a/board/trab/auto_update.c
+++ b/board/trab/auto_update.c
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2003
- * Gary Jennejohn, DENX Software Engineering, gj(a)denx.de.
+ * Gary Jennejohn, DENX Software Engineering, garyj(a)denx.de.
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/trab/config.mk b/board/trab/config.mk
index 800cc28..7a5de60 100644
--- a/board/trab/config.mk
+++ b/board/trab/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
#
# TRAB board with S3C2400X (arm920t) cpu
#
diff --git a/board/trab/flash.c b/board/trab/flash.c
index 317b61d..2bbb70b 100644
--- a/board/trab/flash.c
+++ b/board/trab/flash.c
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/trab/lowlevel_init.S b/board/trab/lowlevel_init.S
index bc7142a..9a00944 100644
--- a/board/trab/lowlevel_init.S
+++ b/board/trab/lowlevel_init.S
@@ -6,7 +6,7 @@
*
* Modified for the TRAB board by
* (C) Copyright 2002-2003
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/trab/rs485.c b/board/trab/rs485.c
index 2aedd2d..97aea91 100644
--- a/board/trab/rs485.c
+++ b/board/trab/rs485.c
@@ -3,7 +3,7 @@
* Martin Krause, TQ-Systems GmbH, <martin.krause(a)tqs.de>
*
* Based on cpu/arm920t/serial.c, by Gary Jennejohn
- * (C) Copyright 2002 Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * (C) Copyright 2002 Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/board/trab/rs485.h b/board/trab/rs485.h
index d4a008a..9f0a5b9 100644
--- a/board/trab/rs485.h
+++ b/board/trab/rs485.h
@@ -3,7 +3,7 @@
* Martin Krause, TQ-Systems GmbH, <martin.krause(a)tqs.de>
*
* Based on cpu/arm920t/serial.c, by Gary Jennejohn
- * (C) Copyright 2002 Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * (C) Copyright 2002 Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/board/trab/trab.c b/board/trab/trab.c
index 7fcc450..5359065 100644
--- a/board/trab/trab.c
+++ b/board/trab/trab.c
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/trab/u-boot.lds b/board/trab/u-boot.lds
index 912a2bb..d8bcfa4 100644
--- a/board/trab/u-boot.lds
+++ b/board/trab/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/board/voiceblue/eeprom.lds b/board/voiceblue/eeprom.lds
index 132476d..1e48494 100644
--- a/board/voiceblue/eeprom.lds
+++ b/board/voiceblue/eeprom.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
* (C) Copyright 2005
* Ladislav Michl, 2N Telekomunikace, <michl(a)2n.cz>
*
diff --git a/board/voiceblue/u-boot.lds b/board/voiceblue/u-boot.lds
index 97fcef3..c60cb2b 100644
--- a/board/voiceblue/u-boot.lds
+++ b/board/voiceblue/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/common/usb_storage.c b/common/usb_storage.c
index fec64f3..19613f2 100644
--- a/common/usb_storage.c
+++ b/common/usb_storage.c
@@ -11,7 +11,7 @@
* (C) Copyright 2001 Denis Peter, MPL AG Switzerland
*
* For BBB support (C) Copyright 2003
- * Gary Jennejohn, DENX Software Engineering <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering <garyj(a)denx.de>
*
* BBB support based on /sys/dev/usb/umass.c from
* FreeBSD.
diff --git a/cpu/arm1136/config.mk b/cpu/arm1136/config.mk
index 6ab0dd3..295e8a5 100644
--- a/cpu/arm1136/config.mk
+++ b/cpu/arm1136/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
#
# See file CREDITS for list of people who contributed to this
# project.
diff --git a/cpu/arm1136/cpu.c b/cpu/arm1136/cpu.c
index e03a765..7381da0 100644
--- a/cpu/arm1136/cpu.c
+++ b/cpu/arm1136/cpu.c
@@ -6,7 +6,7 @@
* Marius Groeger <mgroeger(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/arm1136/omap24xx/interrupts.c b/cpu/arm1136/omap24xx/interrupts.c
index 6be1262..a0c535d 100644
--- a/cpu/arm1136/omap24xx/interrupts.c
+++ b/cpu/arm1136/omap24xx/interrupts.c
@@ -9,7 +9,7 @@
* Alex Zuepke <azu(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/arm1136/omap24xx/start.S b/cpu/arm1136/omap24xx/start.S
index d6cefbd..5f8343f 100644
--- a/cpu/arm1136/omap24xx/start.S
+++ b/cpu/arm1136/omap24xx/start.S
@@ -5,7 +5,7 @@
*
* Copyright (c) 2001 Marius Gröger <mag(a)sysgo.de>
* Copyright (c) 2002 Alex ZÃŒpke <azu(a)sysgo.de>
- * Copyright (c) 2002 Gary Jennejohn <gj(a)denx.de>
+ * Copyright (c) 2002 Gary Jennejohn <garyj(a)denx.de>
* Copyright (c) 2003 Richard Woodruff <r-woodruff2(a)ti.com>
* Copyright (c) 2003 Kshitij <kshitij(a)ti.com>
*
diff --git a/cpu/arm1136/start.S b/cpu/arm1136/start.S
index e622338..999b184 100644
--- a/cpu/arm1136/start.S
+++ b/cpu/arm1136/start.S
@@ -5,7 +5,7 @@
*
* Copyright (c) 2001 Marius Gröger <mag(a)sysgo.de>
* Copyright (c) 2002 Alex Züpke <azu(a)sysgo.de>
- * Copyright (c) 2002 Gary Jennejohn <gj(a)denx.de>
+ * Copyright (c) 2002 Gary Jennejohn <garyj(a)denx.de>
* Copyright (c) 2003 Richard Woodruff <r-woodruff2(a)ti.com>
* Copyright (c) 2003 Kshitij <kshitij(a)ti.com>
*
diff --git a/cpu/arm1176/config.mk b/cpu/arm1176/config.mk
index 5083594..d2f057b 100644
--- a/cpu/arm1176/config.mk
+++ b/cpu/arm1176/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
#
# See file CREDITS for list of people who contributed to this
# project.
diff --git a/cpu/arm1176/cpu.c b/cpu/arm1176/cpu.c
index bfa4378..fbc8ea8 100644
--- a/cpu/arm1176/cpu.c
+++ b/cpu/arm1176/cpu.c
@@ -6,7 +6,7 @@
* Marius Groeger <mgroeger(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/arm1176/s3c64xx/config.mk b/cpu/arm1176/s3c64xx/config.mk
index 204e880..4f3b66c 100644
--- a/cpu/arm1176/s3c64xx/config.mk
+++ b/cpu/arm1176/s3c64xx/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
#
# See file CREDITS for list of people who contributed to this
# project.
diff --git a/cpu/arm1176/s3c64xx/interrupts.c b/cpu/arm1176/s3c64xx/interrupts.c
index 83f3806..7bb9848 100644
--- a/cpu/arm1176/s3c64xx/interrupts.c
+++ b/cpu/arm1176/s3c64xx/interrupts.c
@@ -11,7 +11,7 @@
* Alex Zuepke <azu(a)sysgo.de>
*
* (C) Copyright 2002-2004
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* (C) Copyright 2004
* Philippe Robin, ARM Ltd. <philippe.robin(a)arm.com>
diff --git a/cpu/arm920t/config.mk b/cpu/arm920t/config.mk
index 38718a3..5d8a10f 100644
--- a/cpu/arm920t/config.mk
+++ b/cpu/arm920t/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
#
# See file CREDITS for list of people who contributed to this
# project.
diff --git a/cpu/arm920t/cpu.c b/cpu/arm920t/cpu.c
index 87c1adc..0c080fe 100644
--- a/cpu/arm920t/cpu.c
+++ b/cpu/arm920t/cpu.c
@@ -4,7 +4,7 @@
* Marius Groeger <mgroeger(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/arm920t/imx/interrupts.c b/cpu/arm920t/imx/interrupts.c
index ddcfb34..1beaf9d 100644
--- a/cpu/arm920t/imx/interrupts.c
+++ b/cpu/arm920t/imx/interrupts.c
@@ -8,7 +8,7 @@
* Alex Zuepke <azu(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/arm920t/interrupts.c b/cpu/arm920t/interrupts.c
index 09c54db..1fbd1f0 100644
--- a/cpu/arm920t/interrupts.c
+++ b/cpu/arm920t/interrupts.c
@@ -8,7 +8,7 @@
* Alex Zuepke <azu(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/arm920t/s3c24x0/interrupts.c b/cpu/arm920t/s3c24x0/interrupts.c
index 11e6804..b8ce6ae 100644
--- a/cpu/arm920t/s3c24x0/interrupts.c
+++ b/cpu/arm920t/s3c24x0/interrupts.c
@@ -8,7 +8,7 @@
* Alex Zuepke <azu(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/arm920t/s3c24x0/usb_ohci.c b/cpu/arm920t/s3c24x0/usb_ohci.c
index 9cbd477..7838014 100644
--- a/cpu/arm920t/s3c24x0/usb_ohci.c
+++ b/cpu/arm920t/s3c24x0/usb_ohci.c
@@ -2,7 +2,7 @@
* URB OHCI HCD (Host Controller Driver) for USB on the S3C2400.
*
* (C) Copyright 2003
- * Gary Jennejohn, DENX Software Engineering <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering <garyj(a)denx.de>
*
* Note: Much of this code has been derived from Linux 2.4
* (C) Copyright 1999 Roman Weissgaerber <weissg(a)vienna.at>
diff --git a/cpu/arm920t/start.S b/cpu/arm920t/start.S
index f610e9f..475cdaf 100644
--- a/cpu/arm920t/start.S
+++ b/cpu/arm920t/start.S
@@ -3,7 +3,7 @@
*
* Copyright (c) 2001 Marius Gröger <mag(a)sysgo.de>
* Copyright (c) 2002 Alex Züpke <azu(a)sysgo.de>
- * Copyright (c) 2002 Gary Jennejohn <gj(a)denx.de>
+ * Copyright (c) 2002 Gary Jennejohn <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/arm925t/config.mk b/cpu/arm925t/config.mk
index 38718a3..5d8a10f 100644
--- a/cpu/arm925t/config.mk
+++ b/cpu/arm925t/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
#
# See file CREDITS for list of people who contributed to this
# project.
diff --git a/cpu/arm925t/cpu.c b/cpu/arm925t/cpu.c
index a9778dc..62828b1 100644
--- a/cpu/arm925t/cpu.c
+++ b/cpu/arm925t/cpu.c
@@ -4,7 +4,7 @@
* Marius Groeger <mgroeger(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/arm925t/interrupts.c b/cpu/arm925t/interrupts.c
index ec2a978..179992d 100644
--- a/cpu/arm925t/interrupts.c
+++ b/cpu/arm925t/interrupts.c
@@ -14,7 +14,7 @@
* Alex Zuepke <azu(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/arm925t/start.S b/cpu/arm925t/start.S
index c48014d..567e804 100644
--- a/cpu/arm925t/start.S
+++ b/cpu/arm925t/start.S
@@ -7,7 +7,7 @@
*
* Copyright (c) 2001 Marius Gröger <mag(a)sysgo.de>
* Copyright (c) 2002 Alex Züpke <azu(a)sysgo.de>
- * Copyright (c) 2002 Gary Jennejohn <gj(a)denx.de>
+ * Copyright (c) 2002 Gary Jennejohn <garyj(a)denx.de>
* Copyright (c) 2003 Richard Woodruff <r-woodruff2(a)ti.com>
* Copyright (c) 2003 Kshitij <kshitij(a)ti.com>
*
diff --git a/cpu/arm926ejs/at91/u-boot.lds b/cpu/arm926ejs/at91/u-boot.lds
index 62a3e95..8518a1d 100644
--- a/cpu/arm926ejs/at91/u-boot.lds
+++ b/cpu/arm926ejs/at91/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/arm926ejs/config.mk b/cpu/arm926ejs/config.mk
index a57d03a..885d5c1 100644
--- a/cpu/arm926ejs/config.mk
+++ b/cpu/arm926ejs/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
#
# See file CREDITS for list of people who contributed to this
# project.
diff --git a/cpu/arm926ejs/cpu.c b/cpu/arm926ejs/cpu.c
index 6307e33..518c5e0 100644
--- a/cpu/arm926ejs/cpu.c
+++ b/cpu/arm926ejs/cpu.c
@@ -4,7 +4,7 @@
* Marius Groeger <mgroeger(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/arm926ejs/davinci/timer.c b/cpu/arm926ejs/davinci/timer.c
index 773735a..2604d57 100644
--- a/cpu/arm926ejs/davinci/timer.c
+++ b/cpu/arm926ejs/davinci/timer.c
@@ -11,7 +11,7 @@
* Alex Zuepke <azu(a)sysgo.de>
*
* (C) Copyright 2002-2004
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* (C) Copyright 2004
* Philippe Robin, ARM Ltd. <philippe.robin(a)arm.com>
diff --git a/cpu/arm926ejs/interrupts.c b/cpu/arm926ejs/interrupts.c
index 7a41f0b..ce979f3 100644
--- a/cpu/arm926ejs/interrupts.c
+++ b/cpu/arm926ejs/interrupts.c
@@ -11,7 +11,7 @@
* Alex Zuepke <azu(a)sysgo.de>
*
* (C) Copyright 2002-2004
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* (C) Copyright 2004
* Philippe Robin, ARM Ltd. <philippe.robin(a)arm.com>
diff --git a/cpu/arm926ejs/nomadik/timer.c b/cpu/arm926ejs/nomadik/timer.c
index 2b2208c..960cf52 100644
--- a/cpu/arm926ejs/nomadik/timer.c
+++ b/cpu/arm926ejs/nomadik/timer.c
@@ -11,7 +11,7 @@
* Alex Zuepke <azu(a)sysgo.de>
*
* (C) Copyright 2002-2004
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* (C) Copyright 2004
* Philippe Robin, ARM Ltd. <philippe.robin(a)arm.com>
diff --git a/cpu/arm926ejs/omap/reset.S b/cpu/arm926ejs/omap/reset.S
index e898902..4b20756 100644
--- a/cpu/arm926ejs/omap/reset.S
+++ b/cpu/arm926ejs/omap/reset.S
@@ -7,7 +7,7 @@
*
* Copyright (c) 2001 Marius Gröger <mag(a)sysgo.de>
* Copyright (c) 2002 Alex Züpke <azu(a)sysgo.de>
- * Copyright (c) 2002 Gary Jennejohn <gj(a)denx.de>
+ * Copyright (c) 2002 Gary Jennejohn <garyj(a)denx.de>
* Copyright (c) 2003 Richard Woodruff <r-woodruff2(a)ti.com>
* Copyright (c) 2003 Kshitij <kshitij(a)ti.com>
*
diff --git a/cpu/arm926ejs/omap/timer.c b/cpu/arm926ejs/omap/timer.c
index bedc2e7..97f9771 100644
--- a/cpu/arm926ejs/omap/timer.c
+++ b/cpu/arm926ejs/omap/timer.c
@@ -11,7 +11,7 @@
* Alex Zuepke <azu(a)sysgo.de>
*
* (C) Copyright 2002-2004
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* (C) Copyright 2004
* Philippe Robin, ARM Ltd. <philippe.robin(a)arm.com>
diff --git a/cpu/arm926ejs/start.S b/cpu/arm926ejs/start.S
index ed4932a..0275b66 100644
--- a/cpu/arm926ejs/start.S
+++ b/cpu/arm926ejs/start.S
@@ -7,7 +7,7 @@
*
* Copyright (c) 2001 Marius Gröger <mag(a)sysgo.de>
* Copyright (c) 2002 Alex Züpke <azu(a)sysgo.de>
- * Copyright (c) 2002 Gary Jennejohn <gj(a)denx.de>
+ * Copyright (c) 2002 Gary Jennejohn <garyj(a)denx.de>
* Copyright (c) 2003 Richard Woodruff <r-woodruff2(a)ti.com>
* Copyright (c) 2003 Kshitij <kshitij(a)ti.com>
*
diff --git a/cpu/arm926ejs/versatile/reset.S b/cpu/arm926ejs/versatile/reset.S
index e898902..4b20756 100644
--- a/cpu/arm926ejs/versatile/reset.S
+++ b/cpu/arm926ejs/versatile/reset.S
@@ -7,7 +7,7 @@
*
* Copyright (c) 2001 Marius Gröger <mag(a)sysgo.de>
* Copyright (c) 2002 Alex Züpke <azu(a)sysgo.de>
- * Copyright (c) 2002 Gary Jennejohn <gj(a)denx.de>
+ * Copyright (c) 2002 Gary Jennejohn <garyj(a)denx.de>
* Copyright (c) 2003 Richard Woodruff <r-woodruff2(a)ti.com>
* Copyright (c) 2003 Kshitij <kshitij(a)ti.com>
*
diff --git a/cpu/arm926ejs/versatile/timer.c b/cpu/arm926ejs/versatile/timer.c
index 9ac867e..6697672 100755
--- a/cpu/arm926ejs/versatile/timer.c
+++ b/cpu/arm926ejs/versatile/timer.c
@@ -11,7 +11,7 @@
* Alex Zuepke <azu(a)sysgo.de>
*
* (C) Copyright 2002-2004
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* (C) Copyright 2004
* Philippe Robin, ARM Ltd. <philippe.robin(a)arm.com>
diff --git a/cpu/arm946es/config.mk b/cpu/arm946es/config.mk
index 6190e16..9d62ba8 100644
--- a/cpu/arm946es/config.mk
+++ b/cpu/arm946es/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
#
# See file CREDITS for list of people who contributed to this
# project.
diff --git a/cpu/arm946es/cpu.c b/cpu/arm946es/cpu.c
index ef7995d..04f0515 100644
--- a/cpu/arm946es/cpu.c
+++ b/cpu/arm946es/cpu.c
@@ -4,7 +4,7 @@
* Marius Groeger <mgroeger(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/arm946es/interrupts.c b/cpu/arm946es/interrupts.c
index c13d309..3a16abe 100644
--- a/cpu/arm946es/interrupts.c
+++ b/cpu/arm946es/interrupts.c
@@ -11,7 +11,7 @@
* Alex Zuepke <azu(a)sysgo.de>
*
* (C) Copyright 2002-2004
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* (C) Copyright 2004
* Philippe Robin, ARM Ltd. <philippe.robin(a)arm.com>
diff --git a/cpu/arm946es/start.S b/cpu/arm946es/start.S
index 7972b00..9375c76 100644
--- a/cpu/arm946es/start.S
+++ b/cpu/arm946es/start.S
@@ -7,7 +7,7 @@
*
* Copyright (c) 2001 Marius Gröger <mag(a)sysgo.de>
* Copyright (c) 2002 Alex Züpke <azu(a)sysgo.de>
- * Copyright (c) 2002 Gary Jennejohn <gj(a)denx.de>
+ * Copyright (c) 2002 Gary Jennejohn <garyj(a)denx.de>
* Copyright (c) 2003 Richard Woodruff <r-woodruff2(a)ti.com>
* Copyright (c) 2003 Kshitij <kshitij(a)ti.com>
*
diff --git a/cpu/arm_cortexa8/config.mk b/cpu/arm_cortexa8/config.mk
index b021762..5805596 100644
--- a/cpu/arm_cortexa8/config.mk
+++ b/cpu/arm_cortexa8/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
#
# See file CREDITS for list of people who contributed to this
# project.
diff --git a/cpu/arm_cortexa8/cpu.c b/cpu/arm_cortexa8/cpu.c
index 3e1780b..ca6bf4f 100644
--- a/cpu/arm_cortexa8/cpu.c
+++ b/cpu/arm_cortexa8/cpu.c
@@ -6,7 +6,7 @@
* Marius Groeger <mgroeger(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/arm_cortexa8/omap3/config.mk b/cpu/arm_cortexa8/omap3/config.mk
index fbb753e..5fbec7a 100644
--- a/cpu/arm_cortexa8/omap3/config.mk
+++ b/cpu/arm_cortexa8/omap3/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
#
# See file CREDITS for list of people who contributed to this
# project.
diff --git a/cpu/arm_cortexa8/omap3/interrupts.c b/cpu/arm_cortexa8/omap3/interrupts.c
index 9f1189f..742fe9c 100644
--- a/cpu/arm_cortexa8/omap3/interrupts.c
+++ b/cpu/arm_cortexa8/omap3/interrupts.c
@@ -11,7 +11,7 @@
* Alex Zuepke <azu(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/arm_cortexa8/start.S b/cpu/arm_cortexa8/start.S
index 07acdbd..66b4820 100644
--- a/cpu/arm_cortexa8/start.S
+++ b/cpu/arm_cortexa8/start.S
@@ -5,7 +5,7 @@
*
* Copyright (c) 2001 Marius Gröger <mag(a)sysgo.de>
* Copyright (c) 2002 Alex ZÃŒpke <azu(a)sysgo.de>
- * Copyright (c) 2002 Gary Jennejohn <gj(a)denx.de>
+ * Copyright (c) 2002 Gary Jennejohn <garyj(a)denx.de>
* Copyright (c) 2003 Richard Woodruff <r-woodruff2(a)ti.com>
* Copyright (c) 2003 Kshitij <kshitij(a)ti.com>
* Copyright (c) 2006-2008 Syed Mohammed Khasim <x0khasim(a)ti.com>
diff --git a/cpu/arm_intcm/config.mk b/cpu/arm_intcm/config.mk
index 6190e16..9d62ba8 100644
--- a/cpu/arm_intcm/config.mk
+++ b/cpu/arm_intcm/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
#
# See file CREDITS for list of people who contributed to this
# project.
diff --git a/cpu/arm_intcm/cpu.c b/cpu/arm_intcm/cpu.c
index 1636ffb..b137f76 100644
--- a/cpu/arm_intcm/cpu.c
+++ b/cpu/arm_intcm/cpu.c
@@ -4,7 +4,7 @@
* Marius Groeger <mgroeger(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/arm_intcm/start.S b/cpu/arm_intcm/start.S
index ee0804a..0031461 100644
--- a/cpu/arm_intcm/start.S
+++ b/cpu/arm_intcm/start.S
@@ -7,7 +7,7 @@
*
* Copyright (c) 2001 Marius Gröger <mag(a)sysgo.de>
* Copyright (c) 2002 Alex Züpke <azu(a)sysgo.de>
- * Copyright (c) 2002 Gary Jennejohn <gj(a)denx.de>
+ * Copyright (c) 2002 Gary Jennejohn <garyj(a)denx.de>
* Copyright (c) 2003 Richard Woodruff <r-woodruff2(a)ti.com>
* Copyright (c) 2003 Kshitij <kshitij(a)ti.com>
*
diff --git a/cpu/lh7a40x/config.mk b/cpu/lh7a40x/config.mk
index 32fd1d1..c0e7a1d 100644
--- a/cpu/lh7a40x/config.mk
+++ b/cpu/lh7a40x/config.mk
@@ -1,6 +1,6 @@
#
# (C) Copyright 2002
-# Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+# Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
#
# See file CREDITS for list of people who contributed to this
# project.
diff --git a/cpu/lh7a40x/cpu.c b/cpu/lh7a40x/cpu.c
index 93ebd13..338df87 100644
--- a/cpu/lh7a40x/cpu.c
+++ b/cpu/lh7a40x/cpu.c
@@ -4,7 +4,7 @@
* Marius Groeger <mgroeger(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/lh7a40x/interrupts.c b/cpu/lh7a40x/interrupts.c
index 5acfe1a..d39e707 100644
--- a/cpu/lh7a40x/interrupts.c
+++ b/cpu/lh7a40x/interrupts.c
@@ -8,7 +8,7 @@
* Alex Zuepke <azu(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/lh7a40x/serial.c b/cpu/lh7a40x/serial.c
index 2132c05..4767489 100644
--- a/cpu/lh7a40x/serial.c
+++ b/cpu/lh7a40x/serial.c
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/cpu/lh7a40x/start.S b/cpu/lh7a40x/start.S
index 11252ce..a1321b1 100644
--- a/cpu/lh7a40x/start.S
+++ b/cpu/lh7a40x/start.S
@@ -3,7 +3,7 @@
*
* Copyright (c) 2001 Marius Gröger <mag(a)sysgo.de>
* Copyright (c) 2002 Alex Züpke <azu(a)sysgo.de>
- * Copyright (c) 2002 Gary Jennejohn <gj(a)denx.de>
+ * Copyright (c) 2002 Gary Jennejohn <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/mips/au1x00_usb_ohci.c b/cpu/mips/au1x00_usb_ohci.c
index ea02efb..0bc2305 100644
--- a/cpu/mips/au1x00_usb_ohci.c
+++ b/cpu/mips/au1x00_usb_ohci.c
@@ -2,7 +2,7 @@
* URB OHCI HCD (Host Controller Driver) for USB on the AU1x00.
*
* (C) Copyright 2003
- * Gary Jennejohn, DENX Software Engineering <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering <garyj(a)denx.de>
*
* See file CREDITS for list of people who contributed to this
* project.
diff --git a/cpu/mpc5xxx/usb_ohci.c b/cpu/mpc5xxx/usb_ohci.c
index 4bf659d..61a4e3f 100644
--- a/cpu/mpc5xxx/usb_ohci.c
+++ b/cpu/mpc5xxx/usb_ohci.c
@@ -2,7 +2,7 @@
* URB OHCI HCD (Host Controller Driver) for USB on the MPC5200.
*
* (C) Copyright 2003-2004
- * Gary Jennejohn, DENX Software Engineering <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering <garyj(a)denx.de>
*
* (C) Copyright 2004
* Pierre Aubert, Staubli Faverges <p.aubert(a)staubli.com>
diff --git a/cpu/ppc4xx/usb_ohci.c b/cpu/ppc4xx/usb_ohci.c
index 2607ed6..a9edacd 100644
--- a/cpu/ppc4xx/usb_ohci.c
+++ b/cpu/ppc4xx/usb_ohci.c
@@ -2,7 +2,7 @@
* URB OHCI HCD (Host Controller Driver) for USB on the PPC440EP.
*
* (C) Copyright 2003-2004
- * Gary Jennejohn, DENX Software Engineering <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering <garyj(a)denx.de>
*
* (C) Copyright 2004
* Pierre Aubert, Staubli Faverges <p.aubert(a)staubli.com>
diff --git a/drivers/serial/s3c64xx.c b/drivers/serial/s3c64xx.c
index 9d8fcb9..1b974e0 100644
--- a/drivers/serial/s3c64xx.c
+++ b/drivers/serial/s3c64xx.c
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* (C) Copyright 2008
* Guennadi Liakhovetki, DENX Software Engineering, <lg(a)denx.de>
diff --git a/drivers/serial/serial_s3c24x0.c b/drivers/serial/serial_s3c24x0.c
index 1b1b7a6..6d69c43 100644
--- a/drivers/serial/serial_s3c24x0.c
+++ b/drivers/serial/serial_s3c24x0.c
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/drivers/usb/host/isp116x-hcd.c b/drivers/usb/host/isp116x-hcd.c
index 348e404..7aff54b 100644
--- a/drivers/usb/host/isp116x-hcd.c
+++ b/drivers/usb/host/isp116x-hcd.c
@@ -48,7 +48,7 @@
* URB OHCI HCD (Host Controller Driver) for USB on the AU1x00.
*
* (C) Copyright 2003
- * Gary Jennejohn, DENX Software Engineering <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering <garyj(a)denx.de>
*
* [[GNU/GPL disclaimer]]
*
diff --git a/drivers/usb/host/ohci-hcd.c b/drivers/usb/host/ohci-hcd.c
index e2f289e..67d478f 100644
--- a/drivers/usb/host/ohci-hcd.c
+++ b/drivers/usb/host/ohci-hcd.c
@@ -8,7 +8,7 @@
* Zhang Wei, Freescale Semiconductor, Inc. <wei.zhang(a)freescale.com>
*
* (C) Copyright 2003
- * Gary Jennejohn, DENX Software Engineering <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering <garyj(a)denx.de>
*
* Note: Much of this code has been derived from Linux 2.4
* (C) Copyright 1999 Roman Weissgaerber <weissg(a)vienna.at>
diff --git a/include/asm-arm/arch-s3c24x0/memory.h b/include/asm-arm/arch-s3c24x0/memory.h
index 5e254d2..61d6270 100644
--- a/include/asm-arm/arch-s3c24x0/memory.h
+++ b/include/asm-arm/arch-s3c24x0/memory.h
@@ -1,5 +1,5 @@
/*
- * linux/include/asm-arm/arch-s3c2400/memory.h by gj(a)denx.de
+ * linux/include/asm-arm/arch-s3c2400/memory.h by garyj(a)denx.de
* based on
* linux/include/asm-arm/arch-sa1100/memory.h
*
diff --git a/include/configs/VCMA9.h b/include/configs/VCMA9.h
index 5e614fd..de3092d 100644
--- a/include/configs/VCMA9.h
+++ b/include/configs/VCMA9.h
@@ -2,7 +2,7 @@
* (C) Copyright 2002, 2003
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
* Marius Groeger <mgroeger(a)sysgo.de>
- * Gary Jennejohn <gj(a)denx.de>
+ * Gary Jennejohn <garyj(a)denx.de>
* David Mueller <d.mueller(a)elsoft.ch>
*
* Configuation settings for the MPL VCMA9 board.
diff --git a/include/configs/sbc2410x.h b/include/configs/sbc2410x.h
index af00187..eab9629 100644
--- a/include/configs/sbc2410x.h
+++ b/include/configs/sbc2410x.h
@@ -2,7 +2,7 @@
* (C) Copyright 2002
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
* Marius Groeger <mgroeger(a)sysgo.de>
- * Gary Jennejohn <gj(a)denx.de>
+ * Gary Jennejohn <garyj(a)denx.de>
* David Mueller <d.mueller(a)elsoft.ch>
*
* Modified for the friendly-arm SBC-2410X by
diff --git a/include/configs/smdk2400.h b/include/configs/smdk2400.h
index ffdf217..b712db4 100644
--- a/include/configs/smdk2400.h
+++ b/include/configs/smdk2400.h
@@ -4,7 +4,7 @@
* (C) Copyright 2002
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
* Marius Groeger <mgroeger(a)sysgo.de>
- * Gary Jennejohn <gj(a)denx.de>
+ * Gary Jennejohn <garyj(a)denx.de>
*
* Configuation settings for the SAMSUNG board.
*
diff --git a/include/configs/smdk2410.h b/include/configs/smdk2410.h
index fb43706..a473278 100644
--- a/include/configs/smdk2410.h
+++ b/include/configs/smdk2410.h
@@ -2,7 +2,7 @@
* (C) Copyright 2002
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
* Marius Groeger <mgroeger(a)sysgo.de>
- * Gary Jennejohn <gj(a)denx.de>
+ * Gary Jennejohn <garyj(a)denx.de>
* David Mueller <d.mueller(a)elsoft.ch>
*
* Configuation settings for the SAMSUNG SMDK2410 board.
diff --git a/include/configs/smdk6400.h b/include/configs/smdk6400.h
index d3cf6e5..cac58cf 100644
--- a/include/configs/smdk6400.h
+++ b/include/configs/smdk6400.h
@@ -2,7 +2,7 @@
* (C) Copyright 2002
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
* Marius Groeger <mgroeger(a)sysgo.de>
- * Gary Jennejohn <gj(a)denx.de>
+ * Gary Jennejohn <garyj(a)denx.de>
* David Mueller <d.mueller(a)elsoft.ch>
*
* (C) Copyright 2008
diff --git a/include/configs/trab.h b/include/configs/trab.h
index 520fe36..51ad3ca 100644
--- a/include/configs/trab.h
+++ b/include/configs/trab.h
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002-2005
- * Gary Jennejohn <gj(a)denx.de>
+ * Gary Jennejohn <garyj(a)denx.de>
*
* Configuation settings for the TRAB board.
*
diff --git a/lib_arm/interrupts.c b/lib_arm/interrupts.c
index 4dafbfa..8bb950b 100644
--- a/lib_arm/interrupts.c
+++ b/lib_arm/interrupts.c
@@ -11,7 +11,7 @@
* Alex Zuepke <azu(a)sysgo.de>
*
* (C) Copyright 2002-2004
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* (C) Copyright 2004
* Philippe Robin, ARM Ltd. <philippe.robin(a)arm.com>
diff --git a/lib_arm/reset.c b/lib_arm/reset.c
index 550d1e5..4fcedfa 100644
--- a/lib_arm/reset.c
+++ b/lib_arm/reset.c
@@ -8,7 +8,7 @@
* Alex Zuepke <azu(a)sysgo.de>
*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* (C) Copyright 2004
* DAVE Srl
diff --git a/nand_spl/board/samsung/smdk6400/u-boot.lds b/nand_spl/board/samsung/smdk6400/u-boot.lds
index 56e1015..3ac6aa1 100644
--- a/nand_spl/board/samsung/smdk6400/u-boot.lds
+++ b/nand_spl/board/samsung/smdk6400/u-boot.lds
@@ -1,6 +1,6 @@
/*
* (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj(a)denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj(a)denx.de>
*
* (C) Copyright 2008
* Guennadi Liakhovetki, DENX Software Engineering, <lg(a)denx.de>
--
1.6.0.6
2
1

15 May '09
The 'inline' is conflicting with the semantic of 'weak' attribute and with the
way the show_boot_progress() function is used.
Also gcc 4.4 is complaining about it:
main.c:51: error: inline function 'show_boot_progress' cannot be declared weak
Signed-off-by: Emil Medve <Emilian.Medve(a)Freescale.com>
---
common/main.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/common/main.c b/common/main.c
index 905d40f..026edd1 100644
--- a/common/main.c
+++ b/common/main.c
@@ -48,7 +48,7 @@ DECLARE_GLOBAL_DATA_PTR;
* Board-specific Platform code can reimplement show_boot_progress () if needed
*/
void inline __show_boot_progress (int val) {}
-void inline show_boot_progress (int val) __attribute__((weak, alias("__show_boot_progress")));
+void show_boot_progress (int val) __attribute__((weak, alias("__show_boot_progress")));
#if defined(CONFIG_BOOT_RETRY_TIME) && defined(CONFIG_RESET_TO_RETRY)
extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); /* for do_reset() prototype */
--
1.6.3
2
1

[U-Boot] [PATCH v2] MPC8260: fixup device tree by property instead of path
by Wolfgang Denk 15 May '09
by Wolfgang Denk 15 May '09
15 May '09
cpu/mpc8260/cpu.c used to use do_fixup_by_path_u32() to update the
clock frequencies in the device tree, using a CPU path
"/cpus/OF_CPU", with OF_CPU beind defined in the board config file.
However, this does not work when one board config file (here:
MPC8260ADS.h) is intended to be used for several diffrent CPUs and
therefor contains a generic definition like "cpu@0", as the device
trees that will then be loaded will contain specific names like
"PowerPC,8272@0".
We switch to using do_fixup_by_prop_u32() instead, so we can search
for device_type="cpu", as it is done in other architectures, too.
Signed-off-by: Wolfgang Denk <wd(a)denx.de>
Cc: Heiko Schocher <hs(a)denx.de>
---
v2: Fix typo in Heiko's name.
Heiko, could you please test if this works with mgcoge, too?
cpu/mpc8260/cpu.c | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/cpu/mpc8260/cpu.c b/cpu/mpc8260/cpu.c
index d4622ca..17e6248 100644
--- a/cpu/mpc8260/cpu.c
+++ b/cpu/mpc8260/cpu.c
@@ -304,8 +304,6 @@ void watchdog_reset (void)
#if defined(CONFIG_OF_LIBFDT) && defined (CONFIG_OF_BOARD_SETUP)
void ft_cpu_setup (void *blob, bd_t *bd)
{
- char * cpu_path = "/cpus/" OF_CPU;
-
#if defined(CONFIG_HAS_ETH0) || defined(CONFIG_HAS_ETH1) ||\
defined(CONFIG_HAS_ETH2) || defined(CONFIG_HAS_ETH3)
fdt_fixup_ethernet(blob);
@@ -314,9 +312,12 @@ void ft_cpu_setup (void *blob, bd_t *bd)
do_fixup_by_compat_u32(blob, "fsl,cpm2-brg",
"clock-frequency", bd->bi_brgfreq, 1);
- do_fixup_by_path_u32(blob, cpu_path, "bus-frequency", bd->bi_busfreq, 1);
- do_fixup_by_path_u32(blob, cpu_path, "timebase-frequency", OF_TBCLK, 1);
- do_fixup_by_path_u32(blob, cpu_path, "clock-frequency", bd->bi_intfreq, 1);
+ do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
+ "bus-frequency", bd->bi_busfreq, 1);
+ do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
+ "timebase-frequency", OF_TBCLK, 1);
+ do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
+ "clock-frequency", bd->bi_intfreq, 1);
}
#endif /* CONFIG_OF_LIBFDT */
--
1.6.0.6
3
4

15 May '09
Signed-off-by: Stefan Roese <sr(a)denx.de>
---
common/cmd_flash.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/common/cmd_flash.c b/common/cmd_flash.c
index f1f3517..d44349c 100644
--- a/common/cmd_flash.c
+++ b/common/cmd_flash.c
@@ -31,7 +31,7 @@
#include <dataflash.h>
#endif
-#if defined(CONFIG_CMD_JFFS2) && defined(CONFIG_CMD_MTDPARTS)
+#if defined(CONFIG_CMD_MTDPARTS)
#include <jffs2/jffs2.h>
/* parition handling routines */
@@ -325,7 +325,7 @@ int do_flerase (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
flash_info_t *info;
ulong bank, addr_first, addr_last;
int n, sect_first, sect_last;
-#if defined(CONFIG_CMD_JFFS2) && defined(CONFIG_CMD_MTDPARTS)
+#if defined(CONFIG_CMD_MTDPARTS)
struct mtd_device *dev;
struct part_info *part;
u8 dev_type, dev_num, pnum;
@@ -357,7 +357,7 @@ int do_flerase (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
return rcode;
}
-#if defined(CONFIG_CMD_JFFS2) && defined(CONFIG_CMD_MTDPARTS)
+#if defined(CONFIG_CMD_MTDPARTS)
/* erase <part-id> - erase partition */
if ((argc == 2) && (mtd_id_parse(argv[1], NULL, &dev_type, &dev_num) == 0)) {
mtdparts_init();
@@ -470,7 +470,7 @@ int do_protect (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
#endif /* CONFIG_SYS_NO_FLASH */
ulong addr_first, addr_last;
int p;
-#if defined(CONFIG_CMD_JFFS2) && defined(CONFIG_CMD_MTDPARTS)
+#if defined(CONFIG_CMD_MTDPARTS)
struct mtd_device *dev;
struct part_info *part;
u8 dev_type, dev_num, pnum;
@@ -563,7 +563,7 @@ int do_protect (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
return rcode;
}
-#if defined(CONFIG_CMD_JFFS2) && defined(CONFIG_CMD_MTDPARTS)
+#if defined(CONFIG_CMD_MTDPARTS)
/* protect on/off <part-id> */
if ((argc == 3) && (mtd_id_parse(argv[2], NULL, &dev_type, &dev_num) == 0)) {
mtdparts_init();
@@ -698,7 +698,7 @@ int flash_sect_protect (int p, ulong addr_first, ulong addr_last)
/**************************************************/
-#if defined(CONFIG_CMD_JFFS2) && defined(CONFIG_CMD_MTDPARTS)
+#if defined(CONFIG_CMD_MTDPARTS)
# define TMP_ERASE "erase <part-id>\n - erase partition\n"
# define TMP_PROT_ON "protect on <part-id>\n - protect partition\n"
# define TMP_PROT_OFF "protect off <part-id>\n - make partition writable\n"
--
1.6.2.5
2
1

[U-Boot] [PATCH] lib_arch/board.c: Move malloc initialization before flash_init()
by Stefan Roese 15 May '09
by Stefan Roese 15 May '09
15 May '09
This patch moves the malloc initialization before calling flash_init().
Upcoming changes to the NOR FLASH common CFI driver with optional
MTD infrastructure and MTD concatenation support will call malloc().
And nothing really speaks against enabling malloc just a little earlier
in the boot stage. Some architectures already enable malloc before
calling flash_init() so they don't need any changes here.
Signed-off-by: Stefan Roese <sr(a)denx.de>
Cc: Wolfgang Denk <wd(a)denx.de>
Cc: Mike Frysinger <vapier(a)gentoo.org>
Cc: Scott McNutt <smcnutt(a)psyent.com>
Cc: Shinya Kuribayashi <shinya.kuribayashi(a)necel.com>
Cc: Nobuhiro Iwamatsu <iwamatsu(a)nigauri.org>
Cc: Daniel Hellstrom <daniel(a)gaisler.com>
Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj(a)jcrosoft.com>
Cc: John Rigby <jcrigby(a)gmail.com>
---
If nobody from the platforms custodians objects against this patch
then I suggest that Wolfgang pulls it directly into next.
Thanks,
Stefan
lib_arm/board.c | 6 +++---
lib_blackfin/board.c | 7 ++++---
lib_m68k/board.c | 8 ++++----
lib_mips/board.c | 8 ++++----
lib_nios/board.c | 6 ++++--
lib_nios2/board.c | 6 ++++--
lib_ppc/board.c | 8 ++++----
lib_sh/board.c | 2 +-
lib_sparc/board.c | 9 ++++-----
9 files changed, 32 insertions(+), 28 deletions(-)
diff --git a/lib_arm/board.c b/lib_arm/board.c
index 09eaaf2..bbed820 100644
--- a/lib_arm/board.c
+++ b/lib_arm/board.c
@@ -313,6 +313,9 @@ void start_armboot (void)
}
}
+ /* armboot_start is defined in the board-specific linker script */
+ mem_malloc_init (_armboot_start - CONFIG_SYS_MALLOC_LEN);
+
#ifndef CONFIG_SYS_NO_FLASH
/* configure available FLASH banks */
display_flash_config (flash_init ());
@@ -347,9 +350,6 @@ void start_armboot (void)
}
#endif /* CONFIG_LCD */
- /* armboot_start is defined in the board-specific linker script */
- mem_malloc_init (_armboot_start - CONFIG_SYS_MALLOC_LEN);
-
#if defined(CONFIG_CMD_NAND)
puts ("NAND: ");
nand_init(); /* go init the NAND */
diff --git a/lib_blackfin/board.c b/lib_blackfin/board.c
index c223711..1df8370 100644
--- a/lib_blackfin/board.c
+++ b/lib_blackfin/board.c
@@ -309,6 +309,10 @@ void board_init_r(gd_t * id, ulong dest_addr)
post_reloc();
#endif
+ /* initialize malloc() area */
+ mem_malloc_init();
+ malloc_bin_reloc();
+
#if !defined(CONFIG_SYS_NO_FLASH)
/* Initialize the flash and protect u-boot by default */
extern flash_info_t flash_info[];
@@ -326,9 +330,6 @@ void board_init_r(gd_t * id, ulong dest_addr)
bd->bi_flashsize = 0;
bd->bi_flashoffset = 0;
#endif
- /* initialize malloc() area */
- mem_malloc_init();
- malloc_bin_reloc();
#ifdef CONFIG_CMD_NAND
puts("NAND: ");
diff --git a/lib_m68k/board.c b/lib_m68k/board.c
index 583ce10..76b1f54 100644
--- a/lib_m68k/board.c
+++ b/lib_m68k/board.c
@@ -519,6 +519,10 @@ void board_init_r (gd_t *id, ulong dest_addr)
*/
trap_init (CONFIG_SYS_SDRAM_BASE);
+ /* initialize malloc() area */
+ mem_malloc_init ();
+ malloc_bin_reloc ();
+
#if !defined(CONFIG_SYS_NO_FLASH)
puts ("FLASH: ");
@@ -563,10 +567,6 @@ void board_init_r (gd_t *id, ulong dest_addr)
WATCHDOG_RESET ();
- /* initialize malloc() area */
- mem_malloc_init ();
- malloc_bin_reloc ();
-
#ifdef CONFIG_SPI
# if !defined(CONFIG_ENV_IS_IN_EEPROM)
spi_init_f ();
diff --git a/lib_mips/board.c b/lib_mips/board.c
index dfe6831..f483211 100644
--- a/lib_mips/board.c
+++ b/lib_mips/board.c
@@ -371,6 +371,10 @@ void board_init_r (gd_t *id, ulong dest_addr)
bd = gd->bd;
+ /* initialize malloc() area */
+ mem_malloc_init();
+ malloc_bin_reloc();
+
#ifndef CONFIG_SYS_NO_FLASH
/* configure available FLASH banks */
size = flash_init();
@@ -385,10 +389,6 @@ void board_init_r (gd_t *id, ulong dest_addr)
bd->bi_flashoffset = 0;
#endif
- /* initialize malloc() area */
- mem_malloc_init();
- malloc_bin_reloc();
-
#ifdef CONFIG_CMD_NAND
puts ("NAND: ");
nand_init (); /* go init the NAND */
diff --git a/lib_nios/board.c b/lib_nios/board.c
index 024beb5..fc63793 100644
--- a/lib_nios/board.c
+++ b/lib_nios/board.c
@@ -143,11 +143,13 @@ void board_init (void)
}
WATCHDOG_RESET ();
+ mem_malloc_init();
+ malloc_bin_reloc();
+
+ WATCHDOG_RESET ();
bd->bi_flashsize = flash_init();
WATCHDOG_RESET ();
- mem_malloc_init();
- malloc_bin_reloc();
env_relocate();
bd->bi_ip_addr = getenv_IPaddr ("ipaddr");
diff --git a/lib_nios2/board.c b/lib_nios2/board.c
index d759f0f..7986bdc 100644
--- a/lib_nios2/board.c
+++ b/lib_nios2/board.c
@@ -149,11 +149,13 @@ void board_init (void)
}
WATCHDOG_RESET ();
+ mem_malloc_init();
+ malloc_bin_reloc();
+
+ WATCHDOG_RESET ();
bd->bi_flashsize = flash_init();
WATCHDOG_RESET ();
- mem_malloc_init();
- malloc_bin_reloc();
env_relocate();
bd->bi_ip_addr = getenv_IPaddr ("ipaddr");
diff --git a/lib_ppc/board.c b/lib_ppc/board.c
index f69c5f4..7b76886 100644
--- a/lib_ppc/board.c
+++ b/lib_ppc/board.c
@@ -761,6 +761,10 @@ void board_init_r (gd_t *id, ulong dest_addr)
asm ("sync ; isync");
+ /* initialize malloc() area */
+ mem_malloc_init ();
+ malloc_bin_reloc ();
+
#if !defined(CONFIG_SYS_NO_FLASH)
puts ("FLASH: ");
@@ -818,10 +822,6 @@ void board_init_r (gd_t *id, ulong dest_addr)
WATCHDOG_RESET ();
- /* initialize malloc() area */
- mem_malloc_init ();
- malloc_bin_reloc ();
-
#ifdef CONFIG_SPI
# if !defined(CONFIG_ENV_IS_IN_EEPROM)
spi_init_f ();
diff --git a/lib_sh/board.c b/lib_sh/board.c
index d4cc85c..d0dcf31 100644
--- a/lib_sh/board.c
+++ b/lib_sh/board.c
@@ -156,8 +156,8 @@ init_fnc_t *init_sequence[] =
checkboard, /* Check support board */
dram_init, /* SDRAM init */
timer_init, /* SuperH Timer (TCNT0 only) init */
- sh_flash_init, /* Flash memory(NOR) init*/
sh_mem_env_init,
+ sh_flash_init, /* Flash memory(NOR) init*/
INIT_FUNC_NAND_INIT/* Flash memory (NAND) init */
INIT_FUNC_PCI_INIT /* PCI init */
devices_init,
diff --git a/lib_sparc/board.c b/lib_sparc/board.c
index e972d3e..862bce8 100644
--- a/lib_sparc/board.c
+++ b/lib_sparc/board.c
@@ -331,6 +331,10 @@ void board_init_f(ulong bootflag)
*/
interrupt_init();
+ /* initialize malloc() area */
+ mem_malloc_init();
+ malloc_bin_reloc();
+
#if !defined(CONFIG_SYS_NO_FLASH)
puts("FLASH: ");
@@ -371,11 +375,6 @@ void board_init_f(ulong bootflag)
bd->bi_flashoffset = 0;
#endif /* !CONFIG_SYS_NO_FLASH */
- /* initialize malloc() area */
- mem_malloc_init();
-
- malloc_bin_reloc();
-
#ifdef CONFIG_SPI
# if !defined(CONFIG_ENV_IS_IN_EEPROM)
spi_init_f();
--
1.6.2.5
5
6

[U-Boot] [PATCH 1/6] x86/pcat_timer: fix implicit declaration of function ‘unmask_irq’
by Jean-Christophe PLAGNIOL-VILLARD 15 May '09
by Jean-Christophe PLAGNIOL-VILLARD 15 May '09
15 May '09
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj(a)jcrosoft.com>
---
lib_i386/pcat_timer.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/lib_i386/pcat_timer.c b/lib_i386/pcat_timer.c
index e282f64..97ed8b6 100644
--- a/lib_i386/pcat_timer.c
+++ b/lib_i386/pcat_timer.c
@@ -22,6 +22,7 @@
*/
#include <common.h>
+#include <asm/interrupt.h>
#include <asm/io.h>
#include <asm/i8254.h>
#include <asm/ibmpc.h>
--
1.6.2.4
2
10

15 May '09
Add CONFIG_SYS_MONITOR_LEN macro to apollon board config.
CONFIG_SYS_MONITOR_LEN defines the U-Boot image size.
and is used by OneNAND ipl when reading U-Boot image.
Signed-off-by: Rohit Hagargundgi <h.rohit at samsung.com>
---
include/configs/apollon.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/configs/apollon.h b/include/configs/apollon.h
index dff47fc..2e8198f 100644
--- a/include/configs/apollon.h
+++ b/include/configs/apollon.h
@@ -254,6 +254,7 @@
/* OneNAND boot, OneNAND has CS0, NOR boot ONeNAND has CS2 */
#define CONFIG_SYS_ONENAND_BASE 0x00000000
+#define CONFIG_SYS_MONITOR_LEN SZ_256K /* U-Boot image size */
#define CONFIG_ENV_IS_IN_ONENAND 1
#define CONFIG_ENV_ADDR 0x00020000
3
3