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
Kirill Smelkov
linux
Commits
95a23f58
Commit
95a23f58
authored
Feb 11, 2002
by
Richard Henderson
Committed by
Richard Henderson
Feb 11, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Warning cleanup.
parent
40cda92c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
9 deletions
+5
-9
arch/alpha/kernel/core_titan.c
arch/alpha/kernel/core_titan.c
+0
-1
arch/alpha/kernel/proto.h
arch/alpha/kernel/proto.h
+3
-3
arch/alpha/kernel/sys_titan.c
arch/alpha/kernel/sys_titan.c
+2
-5
No files found.
arch/alpha/kernel/core_titan.c
View file @
95a23f58
...
...
@@ -279,7 +279,6 @@ static void __init
titan_init_one_pachip_port
(
titan_pachip_port
*
port
,
int
index
)
{
struct
pci_controller
*
hose
;
unsigned
long
sg_size
;
hose
=
alloc_pci_controller
();
if
(
index
==
0
)
...
...
arch/alpha/kernel/proto.h
View file @
95a23f58
...
...
@@ -162,9 +162,9 @@ extern struct mcheck_info
unsigned
char
extra
;
}
__mcheck_info
;
#define mcheck_expected(cpu) (__mcheck_info.expected)
#define mcheck_taken(cpu) (__mcheck_info.taken)
#define mcheck_extra(cpu) (__mcheck_info.extra)
#define mcheck_expected(cpu) (
(void)(cpu),
__mcheck_info.expected)
#define mcheck_taken(cpu) (
(void)(cpu),
__mcheck_info.taken)
#define mcheck_extra(cpu) (
(void)(cpu),
__mcheck_info.extra)
#endif
#define DEBUG_MCHECK 0
/* 0 = minimal, 1 = debug, 2 = debug+dump. */
...
...
arch/alpha/kernel/sys_titan.c
View file @
95a23f58
...
...
@@ -84,8 +84,8 @@ titan_update_irq_hw(unsigned long mask)
*
dim3
;
#else
volatile
unsigned
long
*
dimB
;
if
(
bcpu
==
0
)
dimB
=
&
cchip
->
dim0
.
csr
;
else
if
(
bcpu
==
1
)
dimB
=
&
cchip
->
dim1
.
csr
;
dimB
=
&
cchip
->
dim0
.
csr
;
if
(
bcpu
==
1
)
dimB
=
&
cchip
->
dim1
.
csr
;
else
if
(
bcpu
==
2
)
dimB
=
&
cchip
->
dim2
.
csr
;
else
if
(
bcpu
==
3
)
dimB
=
&
cchip
->
dim3
.
csr
;
...
...
@@ -190,9 +190,6 @@ init_titan_irqs(struct hw_interrupt_type * ops, int imin, int imax)
static
void
__init
privateer_init_irq
(
void
)
{
extern
asmlinkage
void
entInt
(
void
);
int
cpu
;
outb
(
0
,
DMA1_RESET_REG
);
outb
(
0
,
DMA2_RESET_REG
);
outb
(
DMA_MODE_CASCADE
,
DMA2_MODE_REG
);
...
...
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