Write per cpu firmare boot up messages to debug log only. Signed-of-by: Mike Travis Cc: Greg Kroah-Hartman Cc: Ming Lei Cc: Catalin Marinas Cc: David Woodhouse Cc: Samuel Ortiz --- drivers/base/firmware_class.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) --- linux.orig/drivers/base/firmware_class.c +++ linux/drivers/base/firmware_class.c @@ -487,15 +487,14 @@ _request_firmware(const struct firmware builtin++) { if (strcmp(name, builtin->name)) continue; - dev_info(device, "firmware: using built-in firmware %s\n", - name); + dev_dbg(device, "firmware: using built-in firmware %s\n", name); firmware->size = builtin->size; firmware->data = builtin->data; return 0; } if (uevent) - dev_info(device, "firmware: requesting %s\n", name); + dev_dbg(device, "firmware: requesting %s\n", name); retval = fw_setup_device(firmware, &f_dev, name, device, uevent); if (retval) -- -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/