aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorBob Moore <robert.moore@intel.com>2007-02-02 11:48:20 -0500
committerLen Brown <len.brown@intel.com>2007-02-02 21:14:24 -0500
commit765ec20180fb70b4ee9d730167b2a0b76879f791 (patch)
tree1fd0a7ce30dc80be45f6ff21b1ef5c12bf0e8915 /include
parent1ba753acb372c2955a4843302e92e49ce82e2fea (diff)
ACPICA: Delete stale FADT functions outside tbfadt.c.
Moved all FADT-related functions to a new file, tbfadt.c. Eliminated the acpi_hw_initialize function - the FADT registers are now validated when the table is loaded. Signed-off-by: Alexey Starikovskiy <alexey.y.starikovskiy@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include')
-rw-r--r--include/acpi/achware.h2
-rw-r--r--include/acpi/actables.h9
-rw-r--r--include/acpi/acutils.h2
3 files changed, 9 insertions, 4 deletions
diff --git a/include/acpi/achware.h b/include/acpi/achware.h
index 29b60a8c0593..f3e9a03d651f 100644
--- a/include/acpi/achware.h
+++ b/include/acpi/achware.h
@@ -61,8 +61,6 @@
61/* 61/*
62 * hwacpi - high level functions 62 * hwacpi - high level functions
63 */ 63 */
64acpi_status acpi_hw_initialize(void);
65
66acpi_status acpi_hw_set_mode(u32 mode); 64acpi_status acpi_hw_set_mode(u32 mode);
67 65
68u32 acpi_hw_get_mode(void); 66u32 acpi_hw_get_mode(void);
diff --git a/include/acpi/actables.h b/include/acpi/actables.h
index 9183de1a10f2..62947344b93a 100644
--- a/include/acpi/actables.h
+++ b/include/acpi/actables.h
@@ -45,6 +45,11 @@
45#define __ACTABLES_H__ 45#define __ACTABLES_H__
46 46
47/* 47/*
48 * tbfadt - FADT parse/convert/validate
49 */
50void acpi_tb_parse_fadt(acpi_native_uint table_index, u8 flags);
51
52/*
48 * tbfind - find ACPI table 53 * tbfind - find ACPI table
49 */ 54 */
50acpi_status 55acpi_status
@@ -97,6 +102,10 @@ u8 acpi_tb_checksum(u8 * buffer, acpi_native_uint length);
97acpi_status 102acpi_status
98acpi_tb_verify_checksum(struct acpi_table_header *table, u32 length); 103acpi_tb_verify_checksum(struct acpi_table_header *table, u32 length);
99 104
105void
106acpi_tb_install_table(acpi_physical_address address,
107 u8 flags, char *signature, acpi_native_uint table_index);
108
100acpi_status 109acpi_status
101acpi_tb_parse_root_table(acpi_physical_address rsdp_address, u8 flags); 110acpi_tb_parse_root_table(acpi_physical_address rsdp_address, u8 flags);
102 111
diff --git a/include/acpi/acutils.h b/include/acpi/acutils.h
index 3c66f54e1fd7..ba7d7e9c9b82 100644
--- a/include/acpi/acutils.h
+++ b/include/acpi/acutils.h
@@ -141,8 +141,6 @@ acpi_status acpi_ut_hardware_initialize(void);
141 141
142void acpi_ut_subsystem_shutdown(void); 142void acpi_ut_subsystem_shutdown(void);
143 143
144acpi_status acpi_ut_validate_fadt(void);
145
146/* 144/*
147 * utclib - Local implementations of C library functions 145 * utclib - Local implementations of C library functions
148 */ 146 */