Commit 50a94e1a authored by Miles Bader's avatar Miles Bader Committed by Arnaldo Carvalho de Melo

[PATCH] Miscellaneous v850 whitespace and comment cleanups

parent b49d56f9
/* Linker script for the NEC AS85EP1 V850E evaluation board /* Linker script for the NEC AS85EP1 V850E evaluation board
(CONFIG_V850E_AS85EP1), with kernel in ROM (CONFIG_ROM_KERNEL). */ (CONFIG_V850E_AS85EP1), with kernel in ROM (CONFIG_ROM_KERNEL). */
/* Note, all symbols are prefixed with an extra `_' for compatibility with
the existing linux sources. */
MEMORY { MEMORY {
/* 4MB of flash ROM. */ /* 4MB of flash ROM. */
ROM : ORIGIN = 0, LENGTH = 0x00400000 ROM : ORIGIN = 0, LENGTH = 0x00400000
...@@ -12,7 +9,7 @@ MEMORY { ...@@ -12,7 +9,7 @@ MEMORY {
SRAM : ORIGIN = 0x00400000, LENGTH = 0x00100000 SRAM : ORIGIN = 0x00400000, LENGTH = 0x00100000
/* About 58MB of DRAM. This can actually be at one of two /* About 58MB of DRAM. This can actually be at one of two
positions, determined by jump JP3; we have to use the first positions, determined by jumper JP3; we have to use the first
position because the second is partially out of processor position because the second is partially out of processor
instruction addressing range (though in the second position instruction addressing range (though in the second position
there's actually 64MB available). */ there's actually 64MB available). */
......
...@@ -39,7 +39,7 @@ C_ENTRY(start): ...@@ -39,7 +39,7 @@ C_ENTRY(start):
cmp r19, r20 cmp r19, r20
bne 1f // Guard was not active bne 1f // Guard was not active
// If we get here, the reset guard was active. Load up some // If we get here, the reset guard was active. Load up some
// interesting values as arguments, and jump to the handler. // interesting values as arguments, and jump to the handler.
st.w r0, RESET_GUARD // Allow further resets to succeed st.w r0, RESET_GUARD // Allow further resets to succeed
mov lp, r6 // Arg 0: return address mov lp, r6 // Arg 0: return address
...@@ -53,7 +53,7 @@ C_ENTRY(start): ...@@ -53,7 +53,7 @@ C_ENTRY(start):
1: st.w r20, RESET_GUARD // Turn on reset guard 1: st.w r20, RESET_GUARD // Turn on reset guard
#endif /* CONFIG_RESET_GUARD */ #endif /* CONFIG_RESET_GUARD */
// Setup a temporary stack for doing pre-initialization function calls. // Setup a temporary stack for doing pre-initialization function calls.
// //
// We can't use the initial kernel stack, because (1) it may be // We can't use the initial kernel stack, because (1) it may be
......
/* /*
* arch/v850/kernel/irq.c -- High-level interrupt handling * arch/v850/kernel/irq.c -- High-level interrupt handling
* *
* Copyright (C) 2001,02,03 NEC Corporation * Copyright (C) 2001,02,03 NEC Electronics Corporation
* Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org> * Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org>
* Copyright (C) 1994-2000 Ralf Baechle * Copyright (C) 1994-2000 Ralf Baechle
* Copyright (C) 1992 Linus Torvalds * Copyright (C) 1992 Linus Torvalds
......
/* /*
* arch/v850/kernel/ma.c -- V850E/MA series of cpu chips * arch/v850/kernel/ma.c -- V850E/MA series of cpu chips
* *
* Copyright (C) 2001,02 NEC Corporation * Copyright (C) 2001,02,03 NEC Electronics Corporation
* Copyright (C) 2001,02 Miles Bader <miles@gnu.org> * Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org>
* *
* This file is subject to the terms and conditions of the GNU General * This file is subject to the terms and conditions of the GNU General
* Public License. See the file COPYING in the main directory of this * Public License. See the file COPYING in the main directory of this
......
/* /*
* arch/v850/kernel/mach.h -- Machine-dependent functions used by v850 port * arch/v850/kernel/mach.h -- Machine-dependent functions used by v850 port
* *
* Copyright (C) 2001,02 NEC Corporation * Copyright (C) 2001,02,03 NEC Electronics Corporation
* Copyright (C) 2001,02 Miles Bader <miles@gnu.org> * Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org>
* *
* This file is subject to the terms and conditions of the GNU General * This file is subject to the terms and conditions of the GNU General
* Public License. See the file COPYING in the main directory of this * Public License. See the file COPYING in the main directory of this
......
/* /*
* arch/v850/kernel/process.c -- Arch-dependent process handling * arch/v850/kernel/process.c -- Arch-dependent process handling
* *
* Copyright (C) 2001,02,03 NEC Corporation * Copyright (C) 2001,02,03 NEC Electronics Corporation
* Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org> * Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org>
* *
* This file is subject to the terms and conditions of the GNU General * This file is subject to the terms and conditions of the GNU General
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* include/asm-v850/rte_multi.c -- Support for Multi debugger monitor ROM * include/asm-v850/rte_multi.c -- Support for Multi debugger monitor ROM
* on Midas lab RTE-CB series of evaluation boards * on Midas lab RTE-CB series of evaluation boards
* *
* Copyright (C) 2001,02,03 NEC Corporation * Copyright (C) 2001,02,03 NEC Electronics Corporation
* Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org> * Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org>
* *
* This file is subject to the terms and conditions of the GNU General * This file is subject to the terms and conditions of the GNU General
......
/* /*
* arch/v850/kernel/rte_ma1_cb.c -- Midas labs RTE-V850E/MA1-CB board * arch/v850/kernel/rte_ma1_cb.c -- Midas labs RTE-V850E/MA1-CB board
* *
* Copyright (C) 2001,02,03 NEC Corporation * Copyright (C) 2001,02,03 NEC Electronics Corporation
* Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org> * Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org>
* *
* This file is subject to the terms and conditions of the GNU General * This file is subject to the terms and conditions of the GNU General
......
/* /*
* include/asm-v850/sim.h -- Machine-dependent defs for GDB v850e simulator * include/asm-v850/sim.h -- Machine-dependent defs for GDB v850e simulator
* *
* Copyright (C) 2001,02 NEC Corporation * Copyright (C) 2001,02,03 NEC Electronics Corporation
* Copyright (C) 2001,02 Miles Bader <miles@gnu.org> * Copyright (C) 2001,02,03 Miles Bader <miles@gnu.org>
* *
* This file is subject to the terms and conditions of the GNU General * This file is subject to the terms and conditions of the GNU General
* Public License. See the file COPYING in the main directory of this * Public License. See the file COPYING in the main directory of this
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment