Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

firmware: dmi_scan: Always show system identification string

Let's keep consistent when print dmi_ids_string between SMBIOS 2.x
and SMBIOS 3.x, and always show the system identification string,
like Vendor, Product/Board name and BIOS infos.

Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
Signed-off-by: Jean Delvare <jdelvare@suse.de>

authored by

Kefeng Wang and committed by
Jean Delvare
d4af49f8 b0b3a37b

+2 -2
+2 -2
drivers/firmware/dmi_scan.c
··· 560 560 dmi_ver >> 16, (dmi_ver >> 8) & 0xFF); 561 561 } 562 562 dmi_format_ids(dmi_ids_string, sizeof(dmi_ids_string)); 563 - printk(KERN_DEBUG "DMI: %s\n", dmi_ids_string); 563 + pr_info("DMI: %s\n", dmi_ids_string); 564 564 return 0; 565 565 } 566 566 } ··· 588 588 dmi_ver >> 16, (dmi_ver >> 8) & 0xFF, 589 589 dmi_ver & 0xFF); 590 590 dmi_format_ids(dmi_ids_string, sizeof(dmi_ids_string)); 591 - pr_debug("DMI: %s\n", dmi_ids_string); 591 + pr_info("DMI: %s\n", dmi_ids_string); 592 592 return 0; 593 593 } 594 594 }