Browse Source

ACPI: "ACPI handle has no context!" should be KERN_DEBUG

Signed-off-by: Shaohua Li <shaohua.li@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Shaohua Li 18 years ago
parent
commit
ead77594af
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/acpi/sleep/main.c

+ 1 - 1
drivers/acpi/sleep/main.c

@@ -305,7 +305,7 @@ int acpi_pm_device_sleep_state(struct device *dev, int wake, int *d_min_p)
 	unsigned long d_min, d_max;
 	unsigned long d_min, d_max;
 
 
 	if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &adev))) {
 	if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &adev))) {
-		printk(KERN_ERR "ACPI handle has no context!\n");
+		printk(KERN_DEBUG "ACPI handle has no context!\n");
 		return -ENODEV;
 		return -ENODEV;
 	}
 	}