Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d4af49f8 authored by Kefeng Wang's avatar Kefeng Wang Committed by Jean Delvare
Browse files

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: default avatarKefeng Wang <wangkefeng.wang@huawei.com>
Signed-off-by: default avatarJean Delvare <jdelvare@suse.de>
parent b0b3a37b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -560,7 +560,7 @@ static int __init dmi_present(const u8 *buf)
					dmi_ver >> 16, (dmi_ver >> 8) & 0xFF);
			}
			dmi_format_ids(dmi_ids_string, sizeof(dmi_ids_string));
			printk(KERN_DEBUG "DMI: %s\n", dmi_ids_string);
			pr_info("DMI: %s\n", dmi_ids_string);
			return 0;
		}
	}
@@ -588,7 +588,7 @@ static int __init dmi_smbios3_present(const u8 *buf)
				dmi_ver >> 16, (dmi_ver >> 8) & 0xFF,
				dmi_ver & 0xFF);
			dmi_format_ids(dmi_ids_string, sizeof(dmi_ids_string));
			pr_debug("DMI: %s\n", dmi_ids_string);
			pr_info("DMI: %s\n", dmi_ids_string);
			return 0;
		}
	}