mirror of
https://git.proxmox.com/git/fwupd
synced 2025-07-25 06:35:47 +00:00
trivial: be consistent about the vendor string for AMD
This commit is contained in:
parent
c6731e56f2
commit
331e59eb04
@ -1,2 +1,2 @@
|
||||
[PCI\DRIVER_amdgpu]
|
||||
Plugin = amdgpu
|
||||
Plugin = amd_gpu
|
||||
|
@ -59,7 +59,7 @@ fu_amd_pmc_device_init(FuAmdPmcDevice *self)
|
||||
fu_device_add_flag(FU_DEVICE(self), FWUPD_DEVICE_FLAG_INTERNAL);
|
||||
fu_device_add_icon(FU_DEVICE(self), "computer");
|
||||
fu_device_add_parent_guid(FU_DEVICE(self), "cpu");
|
||||
fu_device_set_vendor(FU_DEVICE(self), "AMD");
|
||||
fu_device_set_vendor(FU_DEVICE(self), "Advanced Micro Devices, Inc.");
|
||||
fu_device_set_version_format(FU_DEVICE(self), FWUPD_VERSION_FORMAT_TRIPLET);
|
||||
fu_device_set_physical_id(FU_DEVICE(self), "amd-pmc");
|
||||
}
|
||||
|
@ -51,7 +51,7 @@ fu_cpu_device_convert_vendor(const gchar *vendor)
|
||||
if (g_strcmp0(vendor, "GenuineIntel") == 0)
|
||||
return "Intel";
|
||||
if (g_strcmp0(vendor, "AuthenticAMD") == 0 || g_strcmp0(vendor, "AMDisbetter!") == 0)
|
||||
return "AMD";
|
||||
return "Advanced Micro Devices, Inc.";
|
||||
if (g_strcmp0(vendor, "CentaurHauls") == 0)
|
||||
return "IDT";
|
||||
if (g_strcmp0(vendor, "CyrixInstead") == 0)
|
||||
|
@ -275,7 +275,7 @@ fu_pci_psp_device_init(FuPciPspDevice *self)
|
||||
fu_device_add_flag(FU_DEVICE(self), FWUPD_DEVICE_FLAG_INTERNAL);
|
||||
fu_device_add_icon(FU_DEVICE(self), "computer");
|
||||
fu_device_add_parent_guid(FU_DEVICE(self), "cpu");
|
||||
fu_device_set_vendor(FU_DEVICE(self), "AMD");
|
||||
fu_device_set_vendor(FU_DEVICE(self), "Advanced Micro Devices, Inc.");
|
||||
fu_device_set_version_format(FU_DEVICE(self), FWUPD_VERSION_FORMAT_QUAD);
|
||||
fu_device_set_physical_id(FU_DEVICE(self), "pci-psp");
|
||||
}
|
||||
|
@ -103,7 +103,7 @@ static const gchar *
|
||||
fu_tpm_v2_device_convert_manufacturer(const gchar *manufacturer)
|
||||
{
|
||||
if (g_strcmp0(manufacturer, "AMD") == 0)
|
||||
return "AMD";
|
||||
return "Advanced Micro Devices, Inc.";
|
||||
if (g_strcmp0(manufacturer, "ATML") == 0)
|
||||
return "Atmel";
|
||||
if (g_strcmp0(manufacturer, "BRCM") == 0)
|
||||
|
Loading…
Reference in New Issue
Block a user