diff options
author | Len Brown <len.brown@intel.com> | 2007-08-03 17:55:53 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2007-08-03 17:55:53 -0400 |
commit | 52fe4bdf40bc07498c5f7935551774e8f8458190 (patch) | |
tree | b40a15a0a13d5b7dd9f3b844ee767cfd25ef028d /drivers/acpi | |
parent | cd8c93a4e04dce8f00d1ef3a476aac8bd65ae40b (diff) | |
download | op-kernel-dev-52fe4bdf40bc07498c5f7935551774e8f8458190.zip op-kernel-dev-52fe4bdf40bc07498c5f7935551774e8f8458190.tar.gz |
ACPI: EC: fix build warning
drivers/acpi/ec.c:657: warning: ‘acpi_ec_register_query_methods’ defined but not used
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/ec.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c index 4d7fe82..6292890 100644 --- a/drivers/acpi/ec.c +++ b/drivers/acpi/ec.c @@ -652,19 +652,6 @@ static struct acpi_ec *make_acpi_ec(void) } static acpi_status -acpi_ec_register_query_methods(acpi_handle handle, u32 level, - void *context, void **return_value) -{ - struct acpi_namespace_node *node = handle; - struct acpi_ec *ec = context; - int value = 0; - if (sscanf(node->name.ascii, "_Q%x", &value) == 1) { - acpi_ec_add_query_handler(ec, value, handle, NULL, NULL); - } - return AE_OK; -} - -static acpi_status ec_parse_device(acpi_handle handle, u32 Level, void *context, void **retval) { acpi_status status; |