diff options
author | Lucas De Marchi <lucas.demarchi@intel.com> | 2022-01-31 17:59:26 +0100 |
---|---|---|
committer | Lucas De Marchi <lucas.demarchi@intel.com> | 2022-02-03 10:06:56 +0100 |
commit | d30b9ae93bf57414160503d3cc62735adeb61557 (patch) | |
tree | 52fb5fd4df56d02719b31bf1877d8e1582db50a6 | |
parent | drm/i915: Move [more] GT registers to their own header file (diff) | |
download | linux-d30b9ae93bf57414160503d3cc62735adeb61557.tar.xz linux-d30b9ae93bf57414160503d3cc62735adeb61557.zip |
drm/i915: Do not spam log with missing arch support
Following what was done in drm_cache.c, when the stub for
remap_io_mapping() was added in commit 67c430bbaae1 ("drm/i915: Skip
remap_io_mapping() for non-x86 platforms"), it included a log message
with pr_err(). However just the warning is already enough and switching
to WARN_ONCE() allows us to keep the log message while avoiding log
spam.
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220131165926.3230642-4-lucas.demarchi@intel.com
-rw-r--r-- | drivers/gpu/drm/i915/i915_mm.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/i915_mm.h b/drivers/gpu/drm/i915/i915_mm.h index 76f1d53bdf34..1c0dcecb2852 100644 --- a/drivers/gpu/drm/i915/i915_mm.h +++ b/drivers/gpu/drm/i915/i915_mm.h @@ -22,8 +22,7 @@ int remap_io_mapping(struct vm_area_struct *vma, unsigned long addr, unsigned long pfn, unsigned long size, struct io_mapping *iomap) { - pr_err("Architecture has no %s() and shouldn't be calling this function\n", __func__); - WARN_ON_ONCE(1); + WARN_ONCE(1, "Architecture has no drm_cache.c support\n"); return 0; } #endif |