Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
a746e6ab
Commit
a746e6ab
authored
Nov 26, 2002
by
Miles Bader
Committed by
Linus Torvalds
Nov 26, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Consolidate various v850 platform banner printks
Consolidate various v850 platform banner printks
parent
8a6f4e29
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
3 additions
and
26 deletions
+3
-26
arch/v850/kernel/anna.c
arch/v850/kernel/anna.c
+0
-6
arch/v850/kernel/fpga85e2c.c
arch/v850/kernel/fpga85e2c.c
+0
-2
arch/v850/kernel/rte_cb.c
arch/v850/kernel/rte_cb.c
+0
-14
arch/v850/kernel/setup.c
arch/v850/kernel/setup.c
+3
-0
arch/v850/kernel/sim.c
arch/v850/kernel/sim.c
+0
-2
arch/v850/kernel/sim85e2c.c
arch/v850/kernel/sim85e2c.c
+0
-2
No files found.
arch/v850/kernel/anna.c
View file @
a746e6ab
...
...
@@ -60,12 +60,6 @@ void __init mach_early_init (void)
void
__init
mach_setup
(
char
**
cmdline
)
{
printk
(
KERN_INFO
"CPU: %s
\n
"
"Platform: %s
\n
"
,
CPU_MODEL_LONG
,
PLATFORM_LONG
);
#ifdef CONFIG_V850E_NB85E_UART_CONSOLE
nb85e_uart_cons_init
(
1
);
#endif
...
...
arch/v850/kernel/fpga85e2c.c
View file @
a746e6ab
...
...
@@ -73,8 +73,6 @@ void __init mach_early_init (void)
void
__init
mach_setup
(
char
**
cmdline
)
{
printk
(
KERN_INFO
"CPU: NEC V850E2 (NA85E2C FPGA implementation)
\n
"
);
memcons_setup
();
/* Setup up NMI0 to copy the registers to a known memory location.
...
...
arch/v850/kernel/rte_cb.c
View file @
a746e6ab
...
...
@@ -60,20 +60,6 @@ void __init mach_early_init (void)
void
__init
mach_setup
(
char
**
cmdline
)
{
printk
(
KERN_INFO
"CPU: %s
\n
"
"Platform: %s%s
\n
"
,
CPU_MODEL_LONG
,
PLATFORM_LONG
,
#ifdef CONFIG_ROM_KERNEL
""
#elif defined (CONFIG_RTE_CB_MULTI)
" (with Multi ROM monitor)"
#else
" (with ROM monitor)"
#endif
);
/* Probe for Mother-A, and print a message if we find it. */
*
(
volatile
long
*
)
MB_A_SRAM_ADDR
=
0xDEADBEEF
;
if
(
*
(
volatile
long
*
)
MB_A_SRAM_ADDR
==
0xDEADBEEF
)
{
...
...
arch/v850/kernel/setup.c
View file @
a746e6ab
...
...
@@ -78,6 +78,9 @@ void __init setup_arch (char **cmdline)
/* ... and tell the kernel about it. */
init_mem_alloc
(
ram_start
,
ram_len
);
printk
(
KERN_INFO
"CPU: %s
\n
Platform: %s
\n
"
,
CPU_MODEL_LONG
,
PLATFORM_LONG
);
/* do machine-specific setups. */
mach_setup
(
cmdline
);
...
...
arch/v850/kernel/sim.c
View file @
a746e6ab
...
...
@@ -42,8 +42,6 @@ void __init mach_setup (char **cmdline)
const
char
*
err
;
unsigned
long
root_dev_addr
,
root_dev_len
;
printk
(
KERN_INFO
"CPU: NEC V850E (GDB simulator)
\n
"
);
simcons_setup
();
printk
(
KERN_INFO
"Reading root filesystem: %s"
,
ROOT_FS
);
...
...
arch/v850/kernel/sim85e2c.c
View file @
a746e6ab
...
...
@@ -79,8 +79,6 @@ void __init mach_early_init (void)
void
__init
mach_setup
(
char
**
cmdline
)
{
printk
(
KERN_INFO
"CPU: NEC V850E2 (sim85e2c simulator)
\n
"
);
memcons_setup
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment