diff options
| author | Harish Chegondi <harish.chegondi@intel.com> | 2025-07-18 23:29:47 +0300 |
|---|---|---|
| committer | Ashutosh Dixit <ashutosh.dixit@intel.com> | 2025-07-19 01:05:32 +0300 |
| commit | 4b5514f786dd790ec0d3e2fe66cea7fd2f36bdf3 (patch) | |
| tree | db5252b44b121fc711aeb7c9a3c5cc8ff3f927eb /drivers | |
| parent | 487579fd8524c58dc237904c1b1d9e7c89e53378 (diff) | |
| download | linux-4b5514f786dd790ec0d3e2fe66cea7fd2f36bdf3.tar.xz | |
drm/xe: Remove unnecessary EU stall debug message
The EU stall debug message may cause CI to complain on
unsupported platforms. Remove it.
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
Signed-off-by: Harish Chegondi <harish.chegondi@intel.com>
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Link: https://lore.kernel.org/r/dfb6a080b3442d481c567489aabe47e72f3e784c.1752870172.git.harish.chegondi@intel.com
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/gpu/drm/xe/xe_query.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/gpu/drm/xe/xe_query.c b/drivers/gpu/drm/xe/xe_query.c index 56ef3ee2806f..44d44bbc71dc 100644 --- a/drivers/gpu/drm/xe/xe_query.c +++ b/drivers/gpu/drm/xe/xe_query.c @@ -749,10 +749,8 @@ static int query_eu_stall(struct xe_device *xe, u32 num_rates; int ret; - if (!xe_eu_stall_supported_on_platform(xe)) { - drm_dbg(&xe->drm, "EU stall monitoring is not supported on this platform\n"); + if (!xe_eu_stall_supported_on_platform(xe)) return -ENODEV; - } array_size = xe_eu_stall_get_sampling_rates(&num_rates, &rates); size = sizeof(struct drm_xe_query_eu_stall) + array_size; |
