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
8960df9a
Commit
8960df9a
authored
Oct 08, 2004
by
Len Brown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ACPI] x86_64 build fix
Signed-off-by:
Andrew Morton
<
akpm@osdl.org
>
parent
1c924c71
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
arch/x86_64/kernel/setup.c
arch/x86_64/kernel/setup.c
+3
-3
No files found.
arch/x86_64/kernel/setup.c
View file @
8960df9a
...
...
@@ -71,7 +71,7 @@ EXPORT_SYMBOL(acpi_disabled);
#ifdef CONFIG_ACPI_BOOT
extern
int
__initdata
acpi_ht
;
extern
acpi_interrupt_flags
acpi_sci_flags
;
/* int __initdata acpi_force = 0; */
int
__initdata
acpi_force
=
0
;
#endif
/* For PCI or other memory-mapped resources */
...
...
@@ -248,14 +248,14 @@ static __init void parse_cmdline_early (char ** cmdline_p)
if
(
!
memcmp
(
from
,
"acpi=force"
,
10
))
{
/* add later when we do DMI horrors: */
/* acpi_force = 1; */
acpi_force
=
1
;
acpi_disabled
=
0
;
}
/* acpi=ht just means: do ACPI MADT parsing
at bootup, but don't enable the full ACPI interpreter */
if
(
!
memcmp
(
from
,
"acpi=ht"
,
7
))
{
/* if (!acpi_force) */
if
(
!
acpi_force
)
disable_acpi
();
acpi_ht
=
1
;
}
...
...
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