]> git.baikalelectronics.ru Git - kernel.git/commit
drm/i915/gt: Fix use of static in macro mismatch
authorAndi Shyti <andi.shyti@linux.intel.com>
Tue, 10 May 2022 14:04:47 +0000 (16:04 +0200)
committerJani Nikula <jani.nikula@intel.com>
Thu, 19 May 2022 09:50:29 +0000 (12:50 +0300)
commita52b777e509f74c5eac28410ce62e4b9593835c0
tree173a4d9877cfae6cd214c2f8a8e12573a207ac4b
parent68a701667fd9e4bf916f2adbfccbf05b86a45545
drm/i915/gt: Fix use of static in macro mismatch

The INTEL_GT_RPS_SYSFS_ATTR was creating to different structures
but. When called with the "static" keyword this is affecting only
the first structure, while the second is created as non static.

Move the static keyword inside the macros to affect both the
structures.

Reported-by: Jani Nikula <jani.nikula@linux.intel.com>
Fixes: baa281355e321 ("drm/i915/gt: Create per-tile RPS sysfs interfaces")
Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220510140447.80200-1-andi.shyti@linux.intel.com
(cherry picked from commit 1ade30812abfdd1c161a155fd54b0dd594c217ee)
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c