Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
f40cd6fd
Commit
f40cd6fd
authored
Jan 23, 2008
by
Len Brown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ACPI: on OSI(Linux), print needed DMI rather than requesting dmidecode output
Signed-off-by:
Len Brown
<
len.brown@intel.com
>
parent
5a4e1432
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
drivers/acpi/osl.c
drivers/acpi/osl.c
+10
-4
No files found.
drivers/acpi/osl.c
View file @
f40cd6fd
...
...
@@ -1190,10 +1190,16 @@ acpi_os_validate_interface (char *interface)
if
(
!
strcmp
(
"Linux"
,
interface
))
{
printk
(
KERN_WARNING
PREFIX
"System BIOS is requesting _OSI(Linux)
\n
"
);
printk
(
KERN_WARNING
PREFIX
"If
\"
acpi_osi=Linux
\"
works better,
\n
"
"Please send dmidecode "
"to linux-acpi@vger.kernel.org
\n
"
);
if
(
acpi_dmi_dump
())
printk
(
KERN_NOTICE
PREFIX
"[please extract dmidecode output]
\n
"
);
printk
(
KERN_NOTICE
PREFIX
"Please send DMI info above to "
"linux-acpi@vger.kernel.org
\n
"
);
printk
(
KERN_NOTICE
PREFIX
"If
\"
acpi_osi=%sLinux
\"
works better, "
"please notify linux-acpi@vger.kernel.org
\n
"
,
osi_linux
?
"!"
:
""
);
if
(
osi_linux
)
return
AE_OK
;
}
...
...
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