summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Zak <kzak@redhat.com>2020-03-04 12:54:24 +0100
committerKarel Zak <kzak@redhat.com>2020-05-15 11:54:29 +0200
commit821be171fc98074ade84cfc451fc060b2c11d0b4 (patch)
tree01d8c8ee539ffe9a1073d532dc0d7992222fd047
parent3ed97beca6fae91ae2bfa424733fe6bf9c3b9abe (diff)
downloadutil-linux-821be171fc98074ade84cfc451fc060b2c11d0b4.tar.gz
lscpu: use official name for HiSilicon tsv110
Addresses: https://github.com/karelzak/util-linux/issues/969 Signed-off-by: Karel Zak <kzak@redhat.com>
-rw-r--r--sys-utils/lscpu-arm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-utils/lscpu-arm.c b/sys-utils/lscpu-arm.c
index b45cbe346..ef9d1ff90 100644
--- a/sys-utils/lscpu-arm.c
+++ b/sys-utils/lscpu-arm.c
@@ -171,7 +171,7 @@ static const struct id_part intel_part[] = {
};
static const struct id_part hisi_part[] = {
- { 0xd01, "tsv110" },
+ { 0xd01, "Kunpeng-920" }, /* aka tsv110 */
{ -1, "unknown" },
};
@@ -190,7 +190,7 @@ static const struct hw_impl hw_implementer[] = {
{ 0x42, brcm_part, "Broadcom" },
{ 0x43, cavium_part, "Cavium" },
{ 0x44, dec_part, "DEC" },
- { 0x48, hisi_part, "HiSilicon" },
+ { 0x48, hisi_part, "HiSilicon" },
{ 0x4e, nvidia_part, "Nvidia" },
{ 0x50, apm_part, "APM" },
{ 0x51, qcom_part, "Qualcomm" },