diff options
author | Eric Anholt <anholt@freebsd.org> | 2003-11-05 00:49:35 +0000 |
---|---|---|
committer | Eric Anholt <anholt@freebsd.org> | 2003-11-05 00:49:35 +0000 |
commit | e5cad7fced023e9ad6395147d6fff7ba28f11d17 (patch) | |
tree | bbe2d86d95af871fafb9cb548d7aac5a8256b20a /bsd | |
parent | 27f9c5f01659bb643db00ffb17c140ae3bd99df8 (diff) |
Remove buf_alloc which is unused since the locking commit.
Diffstat (limited to 'bsd')
-rw-r--r-- | bsd/drmP.h | 1 | ||||
-rw-r--r-- | bsd/drm_drv.h | 1 |
2 files changed, 0 insertions, 2 deletions
@@ -332,7 +332,6 @@ struct drm_device { /* Usage Counters */ int open_count; /* Outstanding files open */ int buf_use; /* Buffers in use -- cannot alloc */ - int buf_alloc; /* Buffer allocation in progress */ /* Performance counters */ unsigned long counters; diff --git a/bsd/drm_drv.h b/bsd/drm_drv.h index 911e7f70..0cbc1083 100644 --- a/bsd/drm_drv.h +++ b/bsd/drm_drv.h @@ -422,7 +422,6 @@ static int DRM(setup)( drm_device_t *dev ) DRIVER_PRESETUP(); dev->buf_use = 0; - dev->buf_alloc = 0; #if __HAVE_DMA i = DRM(dma_setup)( dev ); |