aboutsummaryrefslogtreecommitdiff
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)
static void acpi_device_get_debug_info(struct acpi_device *device,
acpi_handle handle, int type)
{
-#ifdef CONFIG_ACPI_DEBUG_OUTPUT
+#ifdef ACPI_DEBUG_OUTPUT
char *type_string = NULL;
char name[80] = { '?', '\0' };
struct acpi_buffer buffer = { sizeof(name), name };
@@ -928,7 +928,7 @@ static void acpi_device_get_debug_info(struct acpi_device *device,
}
printk(KERN_DEBUG "Found %s %s [%p]\n", type_string, name, handle);
-#endif /*CONFIG_ACPI_DEBUG_OUTPUT */
+#endif /* ACPI_DEBUG_OUTPUT */
}
static int acpi_bus_remove(struct acpi_device *dev, int rmdevice)