projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b0b3a37
)
firmware: dmi_scan: Always show system identification string
author
Kefeng Wang
<
[email protected]
>
Mon, 19 Dec 2016 09:01:47 +0000
(10:01 +0100)
committer
Jean Delvare
<
[email protected]
>
Mon, 19 Dec 2016 09:01:47 +0000
(10:01 +0100)
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 <
[email protected]
>
Signed-off-by: Jean Delvare <
[email protected]
>
drivers/firmware/dmi_scan.c
patch
|
blob
|
history
diff --git
a/drivers/firmware/dmi_scan.c
b/drivers/firmware/dmi_scan.c
index 88bebe1968b717b4060a449ff49278cee2a84315..54be60ead08f8068c18dc9bbfd5a40e3cb26685c 100644
(file)
--- a/
drivers/firmware/dmi_scan.c
+++ b/
drivers/firmware/dmi_scan.c
@@
-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));
- pr
intk(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;
}
}