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
b78e3987
Commit
b78e3987
authored
Jul 28, 2003
by
Andy Grover
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ACPI: Better blacklist messages (Jasper Spaans)
parent
7c367c56
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
arch/i386/kernel/acpi/boot.c
arch/i386/kernel/acpi/boot.c
+2
-1
arch/x86_64/kernel/acpi/boot.c
arch/x86_64/kernel/acpi/boot.c
+2
-1
No files found.
arch/i386/kernel/acpi/boot.c
View file @
b78e3987
...
...
@@ -310,11 +310,12 @@ acpi_boot_init (void)
result
=
acpi_blacklisted
();
if
(
result
)
{
printk
(
KERN_WARNING
PREFIX
"BIOS listed in blacklist, disabling ACPI support
\n
"
);
acpi_disabled
=
1
;
return
result
;
}
else
printk
(
KERN_NOTICE
PREFIX
"BIOS
passes
blacklist
\n
"
);
printk
(
KERN_NOTICE
PREFIX
"BIOS
not listed in
blacklist
\n
"
);
#ifdef CONFIG_X86_LOCAL_APIC
...
...
arch/x86_64/kernel/acpi/boot.c
View file @
b78e3987
...
...
@@ -313,10 +313,11 @@ acpi_boot_init (void)
result
=
acpi_blacklisted
();
if
(
result
)
{
printk
(
KERN_WARNING
PREFIX
"BIOS listed in blacklist, disabling ACPI support
\n
"
);
acpi_disabled
=
1
;
return
result
;
}
else
printk
(
KERN_NOTICE
PREFIX
"BIOS
passes
blacklist
\n
"
);
printk
(
KERN_NOTICE
PREFIX
"BIOS
not listed in
blacklist
\n
"
);
extern
int
disable_apic
;
...
...
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