projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d46d09
)
drm/i915/gt: Reflect the true and current status of rc6_enable
author
Juan Escamilla
<jcescami@wasd.net>
Tue, 16 Jan 2024 17:29:19 +0000
(09:29 -0800)
committer
Rodrigo Vivi
<rodrigo.vivi@intel.com>
Wed, 24 Jan 2024 20:33:06 +0000
(15:33 -0500)
The sysfs file is named 'enabled', thus users might want to know the
true state of the RC6 instead of only the indication if the RC6
should be enabled.
Let's use rc6.enable directly instead of rc6.supported.
Signed-off-by: Juan Escamilla <jcescami@wasd.net>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Link:
https://patchwork.freedesktop.org/patch/msgid/20240116172922.3460695-1-jcescami@wasd.net
drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c
b/drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c
index 2d3c4dab6d215c5084d82d41130c0038ae0f2ea0..c0b2022239406dac637acff5c0da899fb6c341ee 100644
(file)
--- a/
drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c
+++ b/
drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c
@@
-182,7
+182,7
@@
static ssize_t rc6_enable_show(struct kobject *kobj,
{
struct intel_gt *gt = intel_gt_sysfs_get_drvdata(kobj, attr->attr.name);
- return sysfs_emit(buff, "%x\n", gt->rc6.
support
ed);
+ return sysfs_emit(buff, "%x\n", gt->rc6.
enabl
ed);
}
static ssize_t rc6_enable_dev_show(struct device *dev,
@@
-191,7
+191,7
@@
static ssize_t rc6_enable_dev_show(struct device *dev,
{
struct intel_gt *gt = intel_gt_sysfs_get_drvdata(&dev->kobj, attr->attr.name);
- return sysfs_emit(buff, "%x\n", gt->rc6.
support
ed);
+ return sysfs_emit(buff, "%x\n", gt->rc6.
enabl
ed);
}
static u32 __rc6_residency_ms_show(struct intel_gt *gt)