Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
010b853b
Commit
010b853b
authored
Jan 29, 2006
by
Ralf Baechle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[MIPS] Get rid of CONFIG_SB1_PASS_1_WORKAROUNDS #ifdef crapola.
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
492fd5f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
arch/mips/kernel/cpu-probe.c
arch/mips/kernel/cpu-probe.c
+3
-4
No files found.
arch/mips/kernel/cpu-probe.c
View file @
010b853b
...
@@ -2,8 +2,8 @@
...
@@ -2,8 +2,8 @@
* Processor capabilities determination functions.
* Processor capabilities determination functions.
*
*
* Copyright (C) xxxx the Anonymous
* Copyright (C) xxxx the Anonymous
* Copyright (C) 1994 - 2006 Ralf Baechle
* Copyright (C) 2003, 2004 Maciej W. Rozycki
* Copyright (C) 2003, 2004 Maciej W. Rozycki
* Copyright (C) 1994 - 2003 Ralf Baechle
* Copyright (C) 2001, 2004 MIPS Inc.
* Copyright (C) 2001, 2004 MIPS Inc.
*
*
* This program is free software; you can redistribute it and/or
* This program is free software; you can redistribute it and/or
...
@@ -641,10 +641,9 @@ static inline void cpu_probe_sibyte(struct cpuinfo_mips *c)
...
@@ -641,10 +641,9 @@ static inline void cpu_probe_sibyte(struct cpuinfo_mips *c)
switch
(
c
->
processor_id
&
0xff00
)
{
switch
(
c
->
processor_id
&
0xff00
)
{
case
PRID_IMP_SB1
:
case
PRID_IMP_SB1
:
c
->
cputype
=
CPU_SB1
;
c
->
cputype
=
CPU_SB1
;
#ifdef CONFIG_SB1_PASS_1_WORKAROUNDS
/* FPU in pass1 is known to have issues. */
/* FPU in pass1 is known to have issues. */
c
->
options
&=
~
(
MIPS_CPU_FPU
|
MIPS_CPU_32FPR
);
if
((
c
->
processor_id
&
0xff
)
<
0x20
)
#endif
c
->
options
&=
~
(
MIPS_CPU_FPU
|
MIPS_CPU_32FPR
);
break
;
break
;
case
PRID_IMP_SB1A
:
case
PRID_IMP_SB1A
:
c
->
cputype
=
CPU_SB1A
;
c
->
cputype
=
CPU_SB1A
;
...
...
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