FreeBSD PR kern/85479: Restore the enabling of debugging by default by the

DRM_DEBUG kernel option. It remains controlled by hw.dri.*.debug no
    matter what.
This commit is contained in:
Eric Anholt 2005-12-02 08:47:04 +00:00
parent 7d735a8c9f
commit 422002dc84

View file

@ -35,7 +35,11 @@
#include "drm.h"
#include "drm_sarea.h"
#ifdef DRM_DEBUG_DEFAULT_ON
int drm_debug_flag = 1;
#else
int drm_debug_flag = 0;
#endif
static int drm_load(drm_device_t *dev);
static void drm_unload(drm_device_t *dev);