summaryrefslogtreecommitdiff
path: root/shared-core/nouveau_dma.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2008-05-28 10:02:20 +1000
committerDave Airlie <airlied@redhat.com>2008-05-28 10:02:20 +1000
commitc06096d34fa4afb3f24d610ccfb385f92dbc1e83 (patch)
treeb630cb837d57c71210f396e121de16dc6d0397a0 /shared-core/nouveau_dma.c
parent59c953245c583bb1062d3a8409a9b615a3a19654 (diff)
radeon: bump release date/version for r500 3D support
Diffstat (limited to 'shared-core/nouveau_dma.c')
0 files changed, 0 insertions, 0 deletions
NONINFRINGEMENT. IN NO EVENT SHALL * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * * $PI: xc/programs/Xserver/hw/xfree86/os-support/linux/drm/kernel/drawable.c,v 1.3 1999/08/30 13:05:00 faith Exp $ * $XFree86: xc/programs/Xserver/hw/xfree86/os-support/linux/drm/kernel/drawable.c,v 1.1 1999/09/25 14:37:58 dawes Exp $ * */ #define __NO_VERSION__ #include "drmP.h" int drm_adddraw(struct inode *inode, struct file *filp, unsigned int cmd, unsigned long arg) { drm_draw_t draw; draw.handle = 0; /* NOOP */ DRM_DEBUG("%d\n", draw.handle); copy_to_user_ret((drm_draw_t *)arg, &draw, sizeof(draw), -EFAULT); return 0; } int drm_rmdraw(struct inode *inode, struct file *filp, unsigned int cmd, unsigned long arg) { return 0; /* NOOP */ }