aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/scan.c
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@mindspring.com>2007-01-27 01:55:18 -0500
committerLen Brown <len.brown@intel.com>2007-01-30 01:54:51 -0500
commit37cabc81640ddba28a2aa7f0d1286a1012eae248 (patch)
tree7702945e0fa8feac115271708ba110c2c84e6b36 /drivers/acpi/scan.c
parent5263bf65d6342e12ab716db8e529501670979321 (diff)
ACPI: Correct ACPI_DEBUG_OUTPUT typo
-#ifdef CONFIG_ACPI_DEBUG_OUTPUT +#ifdef ACPI_DEBUG_OUTPUT As the former doesn't exist. Signed-off-by: Robert P. J. Day <rpjday@mindspring.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/scan.c')
-rw-r--r--drivers/acpi/scan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c
index 283d87522c5..0bd788a64eb 100644
--- a/drivers/acpi/scan.c
+++ b/drivers/acpi/scan.c
@@ -891,7 +891,7 @@ static int acpi_device_set_context(struct acpi_device *device, int type)
891static void acpi_device_get_debug_info(struct acpi_device *device, 891static void acpi_device_get_debug_info(struct acpi_device *device,
892 acpi_handle handle, int type) 892 acpi_handle handle, int type)
893{ 893{
894#ifdef CONFIG_ACPI_DEBUG_OUTPUT 894#ifdef ACPI_DEBUG_OUTPUT
895 char *type_string = NULL; 895 char *type_string = NULL;
896 char name[80] = { '?', '\0' }; 896 char name[80] = { '?', '\0' };
897 struct acpi_buffer buffer = { sizeof(name), name }; 897 struct acpi_buffer buffer = { sizeof(name), name };
@@ -928,7 +928,7 @@ static void acpi_device_get_debug_info(struct acpi_device *device,
928 } 928 }
929 929
930 printk(KERN_DEBUG "Found %s %s [%p]\n", type_string, name, handle); 930 printk(KERN_DEBUG "Found %s %s [%p]\n", type_string, name, handle);
931#endif /*CONFIG_ACPI_DEBUG_OUTPUT */ 931#endif /* ACPI_DEBUG_OUTPUT */
932} 932}
933 933
934static int acpi_bus_remove(struct acpi_device *dev, int rmdevice) 934static int acpi_bus_remove(struct acpi_device *dev, int rmdevice)