]> err.no Git - linux-2.6/commitdiff
drm: remove drm_flush
authorDave Airlie <airlied@starflyer.(none)>
Fri, 11 Nov 2005 08:40:52 +0000 (19:40 +1100)
committerDave Airlie <airlied@linux.ie>
Fri, 11 Nov 2005 08:40:52 +0000 (19:40 +1100)
drm_flush is no longer needed remove.

Signed-off-by: Dave Airlie <airlied@linux.ie>
drivers/char/drm/drmP.h
drivers/char/drm/drm_fops.c
drivers/char/drm/i810_dma.c
drivers/char/drm/i830_dma.c

index 3593f609241a73976ea7199977c12f3bed3b2402..6c35879bbe3a7f8a0f45cd41896cb4cf6be7407b 100644 (file)
@@ -783,7 +783,6 @@ extern int drm_lastclose(drm_device_t *dev);
                                /* Device support (drm_fops.h) */
 extern int drm_open(struct inode *inode, struct file *filp);
 extern int drm_stub_open(struct inode *inode, struct file *filp);
-extern int drm_flush(struct file *filp);
 extern int drm_fasync(int fd, struct file *filp, int on);
 extern int drm_release(struct inode *inode, struct file *filp);
 
index 28f01305377fa8e88fbea9e0b8904e1222bd848b..b73543c694a9392cdb16297a58e69a69ccbb4244 100644 (file)
@@ -423,20 +423,6 @@ static int drm_open_helper(struct inode *inode, struct file *filp,
        return ret;
 }
 
-/** No-op. */
-int drm_flush(struct file *filp)
-{
-       drm_file_t *priv = filp->private_data;
-       drm_device_t *dev = priv->head->dev;
-
-       DRM_DEBUG("pid = %d, device = 0x%lx, open_count = %d\n",
-                 current->pid, (long)old_encode_dev(priv->head->device),
-                 dev->open_count);
-       return 0;
-}
-
-EXPORT_SYMBOL(drm_flush);
-
 /** No-op. */
 int drm_fasync(int fd, struct file *filp, int on)
 {
index c3178a89615df4e6918e63fb0c2296ec4c0d8c88..a7df6147091c589c7dee529964b98a8bbe720c2f 100644 (file)
@@ -114,7 +114,6 @@ static int i810_mmap_buffers(struct file *filp, struct vm_area_struct *vma)
 
 static struct file_operations i810_buffer_fops = {
        .open = drm_open,
-       .flush = drm_flush,
        .release = drm_release,
        .ioctl = drm_ioctl,
        .mmap = i810_mmap_buffers,
index 01dfdb944e1f9abbf6eb46c3e27f124c1d3a4c05..f1e048f10ce896c123d017aa251f5b4a618c5c31 100644 (file)
@@ -116,7 +116,6 @@ static int i830_mmap_buffers(struct file *filp, struct vm_area_struct *vma)
 
 static struct file_operations i830_buffer_fops = {
        .open = drm_open,
-       .flush = drm_flush,
        .release = drm_release,
        .ioctl = drm_ioctl,
        .mmap = i830_mmap_buffers,