summaryrefslogtreecommitdiffstats
path: root/sys/dev/drm
diff options
context:
space:
mode:
authoranholt <anholt@FreeBSD.org>2003-11-03 20:44:00 +0000
committeranholt <anholt@FreeBSD.org>2003-11-03 20:44:00 +0000
commit656a167ab40c34537f6c597feffcbb9724c75f62 (patch)
treec268d2af60c2913eca6baa5f63d3d383b942bcc1 /sys/dev/drm
parenta7ae26004a3f799f5fa3f68b0b9ddf810f68cd3c (diff)
downloadFreeBSD-src-656a167ab40c34537f6c597feffcbb9724c75f62.zip
FreeBSD-src-656a167ab40c34537f6c597feffcbb9724c75f62.tar.gz
Change the DRM_ERROR about authenticator not found back to DRM_DEBUG. It's
noisier than I expected, and I don't have the time to actually get it fixed.
Diffstat (limited to 'sys/dev/drm')
-rw-r--r--sys/dev/drm/drm_drv.h2
-rw-r--r--sys/dev/drm/drm_os_freebsd.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/drm/drm_drv.h b/sys/dev/drm/drm_drv.h
index f00d6de..191dc9f 100644
--- a/sys/dev/drm/drm_drv.h
+++ b/sys/dev/drm/drm_drv.h
@@ -826,7 +826,7 @@ int DRM(close)(dev_t kdev, int flags, int fmt, DRM_STRUCTPROC *p)
priv = DRM(find_file_by_proc)(dev, p);
if (!priv) {
DRM_UNLOCK();
- DRM_ERROR("can't find authenticator\n");
+ DRM_DEBUG("can't find authenticator\n");
return EINVAL;
}
diff --git a/sys/dev/drm/drm_os_freebsd.h b/sys/dev/drm/drm_os_freebsd.h
index 664b8f7..de03771 100644
--- a/sys/dev/drm/drm_os_freebsd.h
+++ b/sys/dev/drm/drm_os_freebsd.h
@@ -185,7 +185,7 @@ do { \
_priv = DRM(find_file_by_proc)(dev, DRM_CURPROC); \
DRM_UNLOCK(); \
if (_priv == NULL) { \
- DRM_ERROR("can't find authenticator\n"); \
+ DRM_DEBUG("can't find authenticator\n"); \
return EINVAL; \
} \
} while (0)
OpenPOWER on IntegriCloud