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.
This commit is contained in:
anholt 2003-11-03 20:44:00 +00:00
parent a7ae26004a
commit 656a167ab4
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}

View File

@ -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)