From: Yasunori Goto Date: Fri, 20 Oct 2006 06:28:30 +0000 (-0700) Subject: [PATCH] Change log level of a message of acpi_memhotplug to KERN_DEBUG X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=6cbe44cd8d48a92856295f445183f52bf42a544d;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git [PATCH] Change log level of a message of acpi_memhotplug to KERN_DEBUG I suppose this message seems quite useless except debugging. It just shows "Hotplug Mem Device". System admin can't know anything by this message. So, I would like to change it to KERN_DEBUG. Signed-off-by: Yasunori Goto Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/acpi/acpi_memhotplug.c b/drivers/acpi/acpi_memhotplug.c index 98099de59b45..9090b5acc5e3 100644 --- a/drivers/acpi/acpi_memhotplug.c +++ b/drivers/acpi/acpi_memhotplug.c @@ -414,7 +414,7 @@ static int acpi_memory_device_add(struct acpi_device *device) /* Set the device state */ mem_device->state = MEMORY_POWER_ON_STATE; - printk(KERN_INFO "%s \n", acpi_device_name(device)); + printk(KERN_DEBUG "%s \n", acpi_device_name(device)); return result; }