artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
64a91b3
)
Silence the "Unclaimed register before interrupt" errors. While these do
author
kettenis
<kettenis@openbsd.org>
Tue, 28 Nov 2017 16:29:56 +0000
(16:29 +0000)
committer
kettenis
<kettenis@openbsd.org>
Tue, 28 Nov 2017 16:29:56 +0000
(16:29 +0000)
indicate a bug somewhere, it is unlikely to be in the OpenBSD glue code.
There are reports that these go away in newer Linux code anyway.
Stops claudio@ from whining.
sys/dev/pci/drm/i915/intel_uncore.c
patch
|
blob
|
history
diff --git
a/sys/dev/pci/drm/i915/intel_uncore.c
b/sys/dev/pci/drm/i915/intel_uncore.c
index
a4f6644
..
8ebf8e6
100644
(file)
--- a/
sys/dev/pci/drm/i915/intel_uncore.c
+++ b/
sys/dev/pci/drm/i915/intel_uncore.c
@@
-1567,7
+1567,7
@@
void intel_uncore_check_errors(struct drm_device *dev)
if (HAS_FPGA_DBG_UNCLAIMED(dev) &&
(__raw_i915_read32(dev_priv, FPGA_DBG) & FPGA_DBG_RM_NOCLAIM)) {
- DRM_
ERROR
("Unclaimed register before interrupt\n");
+ DRM_
DEBUG
("Unclaimed register before interrupt\n");
__raw_i915_write32(dev_priv, FPGA_DBG, FPGA_DBG_RM_NOCLAIM);
}
}