Skip to content

Commit 37558ac

Browse files
jonhunterthierryreding
authored andcommitted
soc/tegra: fuse: Update the SoC revision attribute to display a name
Currently the SoC revision attribute for Tegra devices displays the value of the enum associated with a particular revision. This is not very useful because to obtain the actual revision you need to use the tegra_revision enumeration to translate the value. It is more meaningful to display a name for the revision, such as 'A01', than the enumarated value and therefore, update the revision attribute to display a name. This change does alter the ABI, which is unfortunate, but this is more meaningful and maintable. Signed-off-by: Jon Hunter <[email protected]> Signed-off-by: Thierry Reding <[email protected]>
1 parent d08a409 commit 37558ac

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/soc/tegra/fuse/fuse-tegra.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,8 @@ struct device * __init tegra_soc_device_register(void)
363363
return NULL;
364364

365365
attr->family = kasprintf(GFP_KERNEL, "Tegra");
366-
attr->revision = kasprintf(GFP_KERNEL, "%d", tegra_sku_info.revision);
366+
attr->revision = kasprintf(GFP_KERNEL, "%s",
367+
tegra_revision_name[tegra_sku_info.revision]);
367368
attr->soc_id = kasprintf(GFP_KERNEL, "%u", tegra_get_chip_id());
368369
attr->custom_attr_group = fuse->soc->soc_attr_group;
369370

0 commit comments

Comments
 (0)