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
1c886c6d
Commit
1c886c6d
authored
Nov 20, 2003
by
Len Brown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ACPI] prevent ES7000 tweak from breaking i386 IOAPIC (Andrew de Quincey)
parent
bbdbb841
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
4 deletions
+7
-4
arch/i386/kernel/dmi_scan.c
arch/i386/kernel/dmi_scan.c
+1
-0
arch/i386/kernel/mpparse.c
arch/i386/kernel/mpparse.c
+5
-2
arch/i386/mach-es7000/es7000.c
arch/i386/mach-es7000/es7000.c
+0
-2
include/asm-i386/system.h
include/asm-i386/system.h
+1
-0
No files found.
arch/i386/kernel/dmi_scan.c
View file @
1c886c6d
...
...
@@ -16,6 +16,7 @@ EXPORT_SYMBOL(dmi_broken);
int
is_sony_vaio_laptop
;
int
is_unsafe_smbus
;
int
es7000_plat
=
0
;
struct
dmi_header
{
...
...
arch/i386/kernel/mpparse.c
View file @
1c886c6d
...
...
@@ -1129,8 +1129,11 @@ void __init mp_parse_prt (void)
continue
;
ioapic_pin
=
irq
-
mp_ioapic_routing
[
ioapic
].
irq_start
;
if
(
!
ioapic
&&
(
irq
<
16
))
irq
+=
16
;
if
(
es7000_plat
)
{
if
(
!
ioapic
&&
(
irq
<
16
))
irq
+=
16
;
}
/*
* Avoid pin reprogramming. PRTs typically include entries
* with redundant pin->irq mappings (but unique PCI devices);
...
...
arch/i386/mach-es7000/es7000.c
View file @
1c886c6d
...
...
@@ -51,8 +51,6 @@ struct mip_reg *host_reg;
int
mip_port
;
unsigned
long
mip_addr
,
host_addr
;
static
int
es7000_plat
;
/*
* Parse the OEM Table
*/
...
...
include/asm-i386/system.h
View file @
1c886c6d
...
...
@@ -470,6 +470,7 @@ void enable_hlt(void);
extern
unsigned
long
dmi_broken
;
extern
int
is_sony_vaio_laptop
;
extern
int
es7000_plat
;
#define BROKEN_ACPI_Sx 0x0001
#define BROKEN_INIT_AFTER_S1 0x0002
...
...
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