mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-18 13:48:16 -04:00
drm/amdgpu: Show vram vendor only if available
Ony if vram vendor info is available, show in sysfs. Signed-off-by: Lijo Lazar <lijo.lazar@amd.com> Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
@@ -221,8 +221,23 @@ static struct attribute *amdgpu_vram_mgr_attributes[] = {
|
||||
NULL
|
||||
};
|
||||
|
||||
static umode_t amdgpu_vram_attrs_is_visible(struct kobject *kobj,
|
||||
struct attribute *attr, int i)
|
||||
{
|
||||
struct device *dev = kobj_to_dev(kobj);
|
||||
struct drm_device *ddev = dev_get_drvdata(dev);
|
||||
struct amdgpu_device *adev = drm_to_adev(ddev);
|
||||
|
||||
if (attr == &dev_attr_mem_info_vram_vendor.attr &&
|
||||
!adev->gmc.vram_vendor)
|
||||
return 0;
|
||||
|
||||
return attr->mode;
|
||||
}
|
||||
|
||||
const struct attribute_group amdgpu_vram_mgr_attr_group = {
|
||||
.attrs = amdgpu_vram_mgr_attributes
|
||||
.attrs = amdgpu_vram_mgr_attributes,
|
||||
.is_visible = amdgpu_vram_attrs_is_visible
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user