Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
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-2.6.23
Commits
76a2e849
Commit
76a2e849
authored
Feb 06, 2007
by
Len Brown
Browse files
Options
Browse Files
Download
Plain Diff
Pull acpica into test branch
parents
894d79be
03c6d130
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
drivers/acpi/tables/tbutils.c
drivers/acpi/tables/tbutils.c
+6
-6
No files found.
drivers/acpi/tables/tbutils.c
View file @
76a2e849
...
...
@@ -97,15 +97,15 @@ acpi_tb_print_table_header(acpi_physical_address address,
/* FACS only has signature and length fields of common table header */
ACPI_INFO
((
AE_INFO
,
"%4.4s
@ 0x%p/0x
%04X"
,
header
->
signature
,
ACPI_CAST_PTR
(
void
,
address
)
,
ACPI_INFO
((
AE_INFO
,
"%4.4s
%08lX,
%04X"
,
header
->
signature
,
(
unsigned
long
)
address
,
header
->
length
));
}
else
if
(
ACPI_COMPARE_NAME
(
header
->
signature
,
ACPI_SIG_RSDP
))
{
/* RSDP has no common fields */
ACPI_INFO
((
AE_INFO
,
"RSDP
@ 0x%p/0x%04X (v%3.3
d %6.6s)"
,
ACPI_CAST_PTR
(
void
,
address
)
,
ACPI_INFO
((
AE_INFO
,
"RSDP
%08lX, %04X (r%
d %6.6s)"
,
(
unsigned
long
)
address
,
(
ACPI_CAST_PTR
(
struct
acpi_table_rsdp
,
header
)
->
revision
>
0
)
?
ACPI_CAST_PTR
(
struct
acpi_table_rsdp
,
...
...
@@ -118,8 +118,8 @@ acpi_tb_print_table_header(acpi_physical_address address,
/* Standard ACPI table with full common header */
ACPI_INFO
((
AE_INFO
,
"%4.4s
@ 0x%p/0x%04X (v%3.3d %6.6s %8.8s 0x%08X %4.4s 0x%0
8X)"
,
header
->
signature
,
ACPI_CAST_PTR
(
void
,
address
)
,
"%4.4s
%08lX, %04X (r%d %6.6s %8.8s %8X %4.4s %
8X)"
,
header
->
signature
,
(
unsigned
long
)
address
,
header
->
length
,
header
->
revision
,
header
->
oem_id
,
header
->
oem_table_id
,
header
->
oem_revision
,
header
->
asl_compiler_id
,
...
...
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