aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/firmware/dmi_scan.c
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2015-05-14 14:40:50 +0200
committerJean Delvare <jdelvare@suse.de>2015-05-14 14:40:50 +0200
commitc24930457d4b06903aa5dada50e04a83513e3b6b (patch)
tree3437b4ad62ee5a0a6e4269be250eb46c21348f96 /drivers/firmware/dmi_scan.c
parentLinux 4.1-rc2 (diff)
downloadlinux-dev-c24930457d4b06903aa5dada50e04a83513e3b6b.tar.xz
linux-dev-c24930457d4b06903aa5dada50e04a83513e3b6b.zip
firmware: dmi_scan: Simplified displayed version
The trailing .x adds no information for the reader, and if anyone tries to parse that line, this is more work as they have 3 different formats to handle instead of 2. Plus, this makes backporting fixes harder. Signed-off-by: Jean Delvare <jdelvare@suse.de> Fixes: 95be58df74a5 ("firmware: dmi_scan: Use full dmi version for SMBIOS3") Cc: Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org>
Diffstat (limited to '')
-rw-r--r--drivers/firmware/dmi_scan.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/firmware/dmi_scan.c b/drivers/firmware/dmi_scan.c
index 6e45a43ffe84..5ebb6ceeabfc 100644
--- a/drivers/firmware/dmi_scan.c
+++ b/drivers/firmware/dmi_scan.c
@@ -506,9 +506,8 @@ static int __init dmi_present(const u8 *buf)
if (dmi_walk_early(dmi_decode) == 0) {
if (smbios_ver) {
dmi_ver = smbios_ver;
- pr_info("SMBIOS %d.%d%s present.\n",
- dmi_ver >> 8, dmi_ver & 0xFF,
- (dmi_ver < 0x0300) ? "" : ".x");
+ pr_info("SMBIOS %d.%d present.\n",
+ dmi_ver >> 8, dmi_ver & 0xFF);
} else {
dmi_ver = (buf[14] & 0xF0) << 4 |
(buf[14] & 0x0F);