diff options
Diffstat (limited to 'cpu')
| -rw-r--r-- | cpu/i386/Makefile | 2 | ||||
| -rw-r--r-- | cpu/mpc5xxx/interrupts.c | 2 | ||||
| -rw-r--r-- | cpu/mpc83xx/Makefile | 2 | ||||
| -rw-r--r-- | cpu/ppc4xx/ndfc.c | 24 | ||||
| -rw-r--r-- | cpu/ppc4xx/start.S | 6 | 
5 files changed, 18 insertions, 18 deletions
| diff --git a/cpu/i386/Makefile b/cpu/i386/Makefile index cd46dea2c..1245cf010 100644 --- a/cpu/i386/Makefile +++ b/cpu/i386/Makefile @@ -1,7 +1,7 @@  #  # (C) Copyright 2006  # Wolfgang Denk, DENX Software Engineering, wd@denx.de. -#  +#  # (C) Copyright 2002  # Daniel Engström, Omicron Ceti AB, daniel@omicron.se.  # diff --git a/cpu/mpc5xxx/interrupts.c b/cpu/mpc5xxx/interrupts.c index 7b5cb8be4..beeb22263 100644 --- a/cpu/mpc5xxx/interrupts.c +++ b/cpu/mpc5xxx/interrupts.c @@ -32,7 +32,7 @@   *   * Based on (well, mostly copied from) the code from the 2.4 kernel by   * Dale Farnsworth <dfarnsworth@mvista.com> and Kent Borg. - *  + *   * Copyright (C) 2004 Sylvain Munaut <tnt@246tNt.com>   * Copyright (C) 2003 Montavista Software, Inc   */ diff --git a/cpu/mpc83xx/Makefile b/cpu/mpc83xx/Makefile index f3fa6fd93..85e32e163 100644 --- a/cpu/mpc83xx/Makefile +++ b/cpu/mpc83xx/Makefile @@ -1,7 +1,7 @@  #  # (C) Copyright 2006  # Wolfgang Denk, DENX Software Engineering, wd@denx.de. -#  +#  # Copyright 2004 Freescale Semiconductor, Inc.  #  # See file CREDITS for list of people who contributed to this diff --git a/cpu/ppc4xx/ndfc.c b/cpu/ppc4xx/ndfc.c index c255f93e6..183ab5ef1 100644 --- a/cpu/ppc4xx/ndfc.c +++ b/cpu/ppc4xx/ndfc.c @@ -65,8 +65,8 @@ static void ndfc_hwcontrol(struct mtd_info *mtdinfo, int cmd)  static void ndfc_write_byte(struct mtd_info *mtdinfo, u_char byte)  { -        struct nand_chip *this = mtdinfo->priv; -        ulong base = (ulong) this->IO_ADDR_W; +	struct nand_chip *this = mtdinfo->priv; +	ulong base = (ulong) this->IO_ADDR_W;  	if (hwctl & 0x1)  		out8(base + NDFC_CMD, byte); @@ -78,16 +78,16 @@ static void ndfc_write_byte(struct mtd_info *mtdinfo, u_char byte)  static u_char ndfc_read_byte(struct mtd_info *mtdinfo)  { -        struct nand_chip *this = mtdinfo->priv; -        ulong base = (ulong) this->IO_ADDR_W; +	struct nand_chip *this = mtdinfo->priv; +	ulong base = (ulong) this->IO_ADDR_W;  	return (in8(base + NDFC_DATA));  }  static int ndfc_dev_ready(struct mtd_info *mtdinfo)  { -        struct nand_chip *this = mtdinfo->priv; -        ulong base = (ulong) this->IO_ADDR_W; +	struct nand_chip *this = mtdinfo->priv; +	ulong base = (ulong) this->IO_ADDR_W;  	while (!(in32(base + NDFC_STAT) & NDFC_STAT_IS_READY))  		; @@ -110,8 +110,8 @@ static int ndfc_dev_ready(struct mtd_info *mtdinfo)   */  static void ndfc_read_buf(struct mtd_info *mtdinfo, uint8_t *buf, int len)  { -        struct nand_chip *this = mtdinfo->priv; -        ulong base = (ulong) this->IO_ADDR_W; +	struct nand_chip *this = mtdinfo->priv; +	ulong base = (ulong) this->IO_ADDR_W;  	uint32_t *p = (uint32_t *) buf;  	for(;len > 0; len -= 4) @@ -120,8 +120,8 @@ static void ndfc_read_buf(struct mtd_info *mtdinfo, uint8_t *buf, int len)  static void ndfc_write_buf(struct mtd_info *mtdinfo, const uint8_t *buf, int len)  { -        struct nand_chip *this = mtdinfo->priv; -        ulong base = (ulong) this->IO_ADDR_W; +	struct nand_chip *this = mtdinfo->priv; +	ulong base = (ulong) this->IO_ADDR_W;  	uint32_t *p = (uint32_t *) buf;  	for(; len > 0; len -= 4) @@ -130,8 +130,8 @@ static void ndfc_write_buf(struct mtd_info *mtdinfo, const uint8_t *buf, int len  static int ndfc_verify_buf(struct mtd_info *mtdinfo, const uint8_t *buf, int len)  { -        struct nand_chip *this = mtdinfo->priv; -        ulong base = (ulong) this->IO_ADDR_W; +	struct nand_chip *this = mtdinfo->priv; +	ulong base = (ulong) this->IO_ADDR_W;  	uint32_t *p = (uint32_t *) buf;  	for(; len > 0; len -= 4) diff --git a/cpu/ppc4xx/start.S b/cpu/ppc4xx/start.S index 5a1ab386b..3f2931411 100644 --- a/cpu/ppc4xx/start.S +++ b/cpu/ppc4xx/start.S @@ -173,9 +173,9 @@  /**************************************************************************/  _start_440: -        /*--------------------------------------------------------------------+ -        | 440EPX BUP Change - Hardware team request -        +--------------------------------------------------------------------*/ +	/*--------------------------------------------------------------------+ +	| 440EPX BUP Change - Hardware team request +	+--------------------------------------------------------------------*/  #if defined(CONFIG_440EPX) || defined(CONFIG_440GRX)  	sync  	nop |