diff options
author | Bob Moore <robert.moore@intel.com> | 2007-02-02 11:48:21 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2007-02-02 21:14:26 -0500 |
commit | d8c71b6d3b21cf21ad775e1cf6da95bf87bd5ad4 (patch) | |
tree | 8525fe67ab2a3fb2bb4f203bdc7c9b6bb090afcc /include/acpi | |
parent | 73ca0fbcc25a6080db4136f55dbcd5fe7b33398f (diff) |
ACPICA: Remove obsolete Flags parameter.
Remove flags parameter for acpi_{get,set}_register().
It is no longer necessary now that these functions use a
spinlock for mutual exclusion.
Signed-off-by: Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/acpi')
-rw-r--r-- | include/acpi/achware.h | 2 | ||||
-rw-r--r-- | include/acpi/acpixf.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/acpi/achware.h b/include/acpi/achware.h index f3e9a03d651f..ae449f235cfe 100644 --- a/include/acpi/achware.h +++ b/include/acpi/achware.h | |||
@@ -82,7 +82,7 @@ acpi_hw_low_level_read(u32 width, | |||
82 | acpi_status | 82 | acpi_status |
83 | acpi_hw_low_level_write(u32 width, u32 value, struct acpi_generic_address *reg); | 83 | acpi_hw_low_level_write(u32 width, u32 value, struct acpi_generic_address *reg); |
84 | 84 | ||
85 | acpi_status acpi_hw_clear_acpi_status(u32 flags); | 85 | acpi_status acpi_hw_clear_acpi_status(void); |
86 | 86 | ||
87 | /* | 87 | /* |
88 | * hwgpe - GPE support | 88 | * hwgpe - GPE support |
diff --git a/include/acpi/acpixf.h b/include/acpi/acpixf.h index f4b0a81ee7cb..9c26400acc4d 100644 --- a/include/acpi/acpixf.h +++ b/include/acpi/acpixf.h | |||
@@ -312,9 +312,9 @@ acpi_resource_to_address64(struct acpi_resource *resource, | |||
312 | /* | 312 | /* |
313 | * Hardware (ACPI device) interfaces | 313 | * Hardware (ACPI device) interfaces |
314 | */ | 314 | */ |
315 | acpi_status acpi_get_register(u32 register_id, u32 * return_value, u32 flags); | 315 | acpi_status acpi_get_register(u32 register_id, u32 * return_value); |
316 | 316 | ||
317 | acpi_status acpi_set_register(u32 register_id, u32 value, u32 flags); | 317 | acpi_status acpi_set_register(u32 register_id, u32 value); |
318 | 318 | ||
319 | acpi_status | 319 | acpi_status |
320 | acpi_set_firmware_waking_vector(acpi_physical_address physical_address); | 320 | acpi_set_firmware_waking_vector(acpi_physical_address physical_address); |