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
8e498582
Commit
8e498582
authored
May 21, 2003
by
Andy Grover
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ACPI: Do not reinit ACPI irq entry in ioapic (thanks to Stian Jordet)
parent
2fdc26e5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
arch/i386/kernel/mpparse.c
arch/i386/kernel/mpparse.c
+5
-1
No files found.
arch/i386/kernel/mpparse.c
View file @
8e498582
...
@@ -1086,7 +1086,7 @@ void __init mp_parse_prt (void)
...
@@ -1086,7 +1086,7 @@ void __init mp_parse_prt (void)
/*
/*
* Parsing through the PCI Interrupt Routing Table (PRT) and program
* Parsing through the PCI Interrupt Routing Table (PRT) and program
* routing for all
static (IOAPIC-direct)
entries.
* routing for all entries.
*/
*/
list_for_each
(
node
,
&
acpi_prt
.
entries
)
{
list_for_each
(
node
,
&
acpi_prt
.
entries
)
{
entry
=
list_entry
(
node
,
struct
acpi_prt_entry
,
node
);
entry
=
list_entry
(
node
,
struct
acpi_prt_entry
,
node
);
...
@@ -1100,6 +1100,10 @@ void __init mp_parse_prt (void)
...
@@ -1100,6 +1100,10 @@ void __init mp_parse_prt (void)
else
else
irq
=
entry
->
link
.
index
;
irq
=
entry
->
link
.
index
;
/* Don't set up the ACPI SCI because it's already set up */
if
(
acpi_fadt
.
sci_int
==
irq
)
continue
;
ioapic
=
mp_find_ioapic
(
irq
);
ioapic
=
mp_find_ioapic
(
irq
);
if
(
ioapic
<
0
)
if
(
ioapic
<
0
)
continue
;
continue
;
...
...
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