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
20f6b19e
Commit
20f6b19e
authored
Apr 20, 2004
by
Len Brown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ACPI] Delete IRQ2 "cascade" in ACPI IOAPIC mode
no such concept exists in ACPI, frees IRQ2 for use.
parent
72c550fc
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
6 deletions
+13
-6
arch/i386/mach-default/setup.c
arch/i386/mach-default/setup.c
+3
-1
arch/i386/mach-es7000/setup.c
arch/i386/mach-es7000/setup.c
+4
-3
arch/i386/mach-voyager/setup.c
arch/i386/mach-voyager/setup.c
+3
-1
arch/x86_64/kernel/i8259.c
arch/x86_64/kernel/i8259.c
+3
-1
No files found.
arch/i386/mach-default/setup.c
View file @
20f6b19e
...
...
@@ -7,6 +7,7 @@
#include <linux/init.h>
#include <linux/irq.h>
#include <linux/interrupt.h>
#include <asm/acpi.h>
#include <asm/arch_hooks.h>
/**
...
...
@@ -43,7 +44,8 @@ void __init intr_init_hook(void)
apic_intr_init
();
#endif
setup_irq
(
2
,
&
irq2
);
if
(
!
acpi_ioapic
)
setup_irq
(
2
,
&
irq2
);
}
/**
...
...
arch/i386/mach-es7000/setup.c
View file @
20f6b19e
...
...
@@ -7,6 +7,7 @@
#include <linux/init.h>
#include <linux/irq.h>
#include <linux/interrupt.h>
#include <asm/acpi.h>
#include <asm/arch_hooks.h>
/**
...
...
@@ -17,8 +18,7 @@
* the "ordinary" interrupt call gates. For legacy reasons, the ISA
* interrupts should be initialised here if the machine emulates a PC
* in any way.
**/
void
__init
pre_intr_init_hook
(
void
)
**/
void
__init
pre_intr_init_hook
(
void
)
{
init_ISA_irqs
();
}
...
...
@@ -43,7 +43,8 @@ void __init intr_init_hook(void)
apic_intr_init
();
#endif
setup_irq
(
2
,
&
irq2
);
if
(
!
acpi_ioapic
)
setup_irq
(
2
,
&
irq2
);
}
/**
...
...
arch/i386/mach-voyager/setup.c
View file @
20f6b19e
...
...
@@ -6,6 +6,7 @@
#include <linux/init.h>
#include <linux/irq.h>
#include <linux/interrupt.h>
#include <asm/acpi.h>
#include <asm/arch_hooks.h>
void
__init
pre_intr_init_hook
(
void
)
...
...
@@ -24,7 +25,8 @@ void __init intr_init_hook(void)
smp_intr_init
();
#endif
setup_irq
(
2
,
&
irq2
);
if
(
!
acpi_ioapic
)
setup_irq
(
2
,
&
irq2
);
}
void
__init
pre_setup_arch_hook
(
void
)
...
...
arch/x86_64/kernel/i8259.c
View file @
20f6b19e
...
...
@@ -13,6 +13,7 @@
#include <linux/kernel_stat.h>
#include <linux/sysdev.h>
#include <asm/acpi.h>
#include <asm/atomic.h>
#include <asm/system.h>
#include <asm/io.h>
...
...
@@ -490,5 +491,6 @@ void __init init_IRQ(void)
*/
setup_timer
();
setup_irq
(
2
,
&
irq2
);
if
(
!
acpi_ioapic
)
setup_irq
(
2
,
&
irq2
);
}
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