diff options
| author | Karel Zak <kzak@redhat.com> | 2020-03-04 12:54:24 +0100 |
|---|---|---|
| committer | Karel Zak <kzak@redhat.com> | 2020-03-04 12:54:24 +0100 |
| commit | 8243036cae35c1be6992b0ef722d68585589d7d7 (patch) | |
| tree | d313105ebc5cbabc0776bc1afbc7e1605304d684 | |
| parent | e441601563d8d259653f0d6e517d4db42cbd9d4b (diff) | |
| download | util-linux-8243036cae35c1be6992b0ef722d68585589d7d7.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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-utils/lscpu-arm.c b/sys-utils/lscpu-arm.c index b45cbe3466..ef9d1ff90e 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" }, |
