aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/drm
diff options
context:
space:
mode:
authorEric Anholt <anholt@FreeBSD.org>2003-11-03 20:44:00 +0000
committerEric Anholt <anholt@FreeBSD.org>2003-11-03 20:44:00 +0000
commit4c4c0f9144808b2a0a64c6b5d73e4dc2ef385be2 (patch)
treec268d2af60c2913eca6baa5f63d3d383b942bcc1 /sys/dev/drm
parenta69c45087c89cebdfd99f8c6a6694e78560135ba (diff)
Notes
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 f00d6dea87f8..191dc9fdc781 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 664b8f7fc892..de0377142ea5 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)