* [PATCH -next] drm/i915/gt: Fix build error without CONFIG_PM
@ 2022-05-06 3:26 YueHaibing
2022-05-06 7:58 ` Tvrtko Ursulin
2022-05-06 8:08 ` Andi Shyti
0 siblings, 2 replies; 3+ messages in thread
From: YueHaibing @ 2022-05-06 3:26 UTC (permalink / raw)
To: jani.nikula, joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin,
airlied, daniel, andi.shyti, matthew.auld, andrzej.hajda,
yuehaibing, lucas.demarchi
Cc: intel-gfx, linux-kernel, dri-devel
drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c: In function ‘act_freq_mhz_show’:
drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c:276:20: error: implicit declaration of function ‘sysfs_gt_attribute_r_max_func’ [-Werror=implicit-function-declaration]
276 | u32 actual_freq = sysfs_gt_attribute_r_max_func(dev, attr,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Move sysfs_gt_attribute_* macros out of #ifdef block to fix this.
Fixes: 56a709cf7746 ("drm/i915/gt: Create per-tile RPS sysfs interfaces")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 26cbfa6477d1..e92990d514b2 100644
--- a/drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c
+++ b/drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c
@@ -17,7 +17,6 @@
#include "intel_rc6.h"
#include "intel_rps.h"
-#ifdef CONFIG_PM
enum intel_gt_sysfs_op {
INTEL_GT_SYSFS_MIN = 0,
INTEL_GT_SYSFS_MAX,
@@ -92,6 +91,7 @@ sysfs_gt_attribute_r_func(struct device *dev, struct device_attribute *attr,
#define sysfs_gt_attribute_r_max_func(d, a, f) \
sysfs_gt_attribute_r_func(d, a, f, INTEL_GT_SYSFS_MAX)
+#ifdef CONFIG_PM
static u32 get_residency(struct intel_gt *gt, i915_reg_t reg)
{
intel_wakeref_t wakeref;
--
2.17.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH -next] drm/i915/gt: Fix build error without CONFIG_PM
2022-05-06 3:26 [PATCH -next] drm/i915/gt: Fix build error without CONFIG_PM YueHaibing
@ 2022-05-06 7:58 ` Tvrtko Ursulin
2022-05-06 8:08 ` Andi Shyti
1 sibling, 0 replies; 3+ messages in thread
From: Tvrtko Ursulin @ 2022-05-06 7:58 UTC (permalink / raw)
To: YueHaibing, jani.nikula, joonas.lahtinen, rodrigo.vivi, airlied,
daniel, andi.shyti, matthew.auld, andrzej.hajda, lucas.demarchi
Cc: intel-gfx, linux-kernel, dri-devel
On 06/05/2022 04:26, YueHaibing wrote:
> drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c: In function ‘act_freq_mhz_show’:
> drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c:276:20: error: implicit declaration of function ‘sysfs_gt_attribute_r_max_func’ [-Werror=implicit-function-declaration]
> 276 | u32 actual_freq = sysfs_gt_attribute_r_max_func(dev, attr,
> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Move sysfs_gt_attribute_* macros out of #ifdef block to fix this.
>
> Fixes: 56a709cf7746 ("drm/i915/gt: Create per-tile RPS sysfs interfaces")
> Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Thanks for the fix, will merge.
Regards,
Tvrtko
> ---
> drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> 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 26cbfa6477d1..e92990d514b2 100644
> --- a/drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c
> +++ b/drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c
> @@ -17,7 +17,6 @@
> #include "intel_rc6.h"
> #include "intel_rps.h"
>
> -#ifdef CONFIG_PM
> enum intel_gt_sysfs_op {
> INTEL_GT_SYSFS_MIN = 0,
> INTEL_GT_SYSFS_MAX,
> @@ -92,6 +91,7 @@ sysfs_gt_attribute_r_func(struct device *dev, struct device_attribute *attr,
> #define sysfs_gt_attribute_r_max_func(d, a, f) \
> sysfs_gt_attribute_r_func(d, a, f, INTEL_GT_SYSFS_MAX)
>
> +#ifdef CONFIG_PM
> static u32 get_residency(struct intel_gt *gt, i915_reg_t reg)
> {
> intel_wakeref_t wakeref;
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH -next] drm/i915/gt: Fix build error without CONFIG_PM
2022-05-06 3:26 [PATCH -next] drm/i915/gt: Fix build error without CONFIG_PM YueHaibing
2022-05-06 7:58 ` Tvrtko Ursulin
@ 2022-05-06 8:08 ` Andi Shyti
1 sibling, 0 replies; 3+ messages in thread
From: Andi Shyti @ 2022-05-06 8:08 UTC (permalink / raw)
To: YueHaibing
Cc: dri-devel, tvrtko.ursulin, andi.shyti, airlied, intel-gfx,
lucas.demarchi, linux-kernel, andrzej.hajda, matthew.auld,
rodrigo.vivi
Hi YueHaibing,
On Fri, May 06, 2022 at 11:26:52AM +0800, YueHaibing wrote:
> drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c: In function ‘act_freq_mhz_show’:
> drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c:276:20: error: implicit declaration of function ‘sysfs_gt_attribute_r_max_func’ [-Werror=implicit-function-declaration]
> 276 | u32 actual_freq = sysfs_gt_attribute_r_max_func(dev, attr,
> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Move sysfs_gt_attribute_* macros out of #ifdef block to fix this.
>
> Fixes: 56a709cf7746 ("drm/i915/gt: Create per-tile RPS sysfs interfaces")
> Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
Thanks,
Andi
> ---
> drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> 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 26cbfa6477d1..e92990d514b2 100644
> --- a/drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c
> +++ b/drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c
> @@ -17,7 +17,6 @@
> #include "intel_rc6.h"
> #include "intel_rps.h"
>
> -#ifdef CONFIG_PM
> enum intel_gt_sysfs_op {
> INTEL_GT_SYSFS_MIN = 0,
> INTEL_GT_SYSFS_MAX,
> @@ -92,6 +91,7 @@ sysfs_gt_attribute_r_func(struct device *dev, struct device_attribute *attr,
> #define sysfs_gt_attribute_r_max_func(d, a, f) \
> sysfs_gt_attribute_r_func(d, a, f, INTEL_GT_SYSFS_MAX)
>
> +#ifdef CONFIG_PM
> static u32 get_residency(struct intel_gt *gt, i915_reg_t reg)
> {
> intel_wakeref_t wakeref;
> --
> 2.17.1
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-05-06 8:08 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-06 3:26 [PATCH -next] drm/i915/gt: Fix build error without CONFIG_PM YueHaibing
2022-05-06 7:58 ` Tvrtko Ursulin
2022-05-06 8:08 ` Andi Shyti
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox