summaryrefslogtreecommitdiff
path: root/linux-core/nouveau_dma.h
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2008-08-14 09:11:15 +1000
committerDave Airlie <airlied@redhat.com>2008-08-14 09:11:15 +1000
commitd59f41b8cf0634a433be7d11f6b473035060c5e1 (patch)
tree11be9818ef37310cb82f426a4fb42f31c3789d32 /linux-core/nouveau_dma.h
parent957c71ff52e93bb2c1bc01b99d29d763d0ef3899 (diff)
radeon: add userspace call for mm support check
Diffstat (limited to 'linux-core/nouveau_dma.h')
0 files changed, 0 insertions, 0 deletions
class="hl com"> * SOFTWARE. */ #ifndef __NOUVEAU_DRMIF_H__ #define __NOUVEAU_DRMIF_H__ #include <stdint.h> #include <xf86drm.h> #include "nouveau_device.h" struct nouveau_device_priv { struct nouveau_device base; int fd; drm_context_t ctx; drmLock *lock; int needs_close; }; #define nouveau_device(n) ((struct nouveau_device_priv *)(n)) int nouveau_device_open_existing(struct nouveau_device **, int close, int fd, drm_context_t ctx); int nouveau_device_open(struct nouveau_device **, const char *busid); void nouveau_device_close(struct nouveau_device **); int nouveau_device_get_param(struct nouveau_device *, uint64_t param, uint64_t *v); int nouveau_device_set_param(struct nouveau_device *, uint64_t param, uint64_t val); #endif