drm: remove drm_flush

drm_flush is no longer needed remove.

Signed-off-by: Dave Airlie <airlied@linux.ie>

authored by Dave Airlie and committed by Dave Airlie 8f5f39f7 7052cff9

-17
-1
drivers/char/drm/drmP.h
··· 783 /* Device support (drm_fops.h) */ 784 extern int drm_open(struct inode *inode, struct file *filp); 785 extern int drm_stub_open(struct inode *inode, struct file *filp); 786 - extern int drm_flush(struct file *filp); 787 extern int drm_fasync(int fd, struct file *filp, int on); 788 extern int drm_release(struct inode *inode, struct file *filp); 789
··· 783 /* Device support (drm_fops.h) */ 784 extern int drm_open(struct inode *inode, struct file *filp); 785 extern int drm_stub_open(struct inode *inode, struct file *filp); 786 extern int drm_fasync(int fd, struct file *filp, int on); 787 extern int drm_release(struct inode *inode, struct file *filp); 788
-14
drivers/char/drm/drm_fops.c
··· 424 } 425 426 /** No-op. */ 427 - int drm_flush(struct file *filp) 428 - { 429 - drm_file_t *priv = filp->private_data; 430 - drm_device_t *dev = priv->head->dev; 431 - 432 - DRM_DEBUG("pid = %d, device = 0x%lx, open_count = %d\n", 433 - current->pid, (long)old_encode_dev(priv->head->device), 434 - dev->open_count); 435 - return 0; 436 - } 437 - 438 - EXPORT_SYMBOL(drm_flush); 439 - 440 - /** No-op. */ 441 int drm_fasync(int fd, struct file *filp, int on) 442 { 443 drm_file_t *priv = filp->private_data;
··· 424 } 425 426 /** No-op. */ 427 int drm_fasync(int fd, struct file *filp, int on) 428 { 429 drm_file_t *priv = filp->private_data;
-1
drivers/char/drm/i810_dma.c
··· 114 115 static struct file_operations i810_buffer_fops = { 116 .open = drm_open, 117 - .flush = drm_flush, 118 .release = drm_release, 119 .ioctl = drm_ioctl, 120 .mmap = i810_mmap_buffers,
··· 114 115 static struct file_operations i810_buffer_fops = { 116 .open = drm_open, 117 .release = drm_release, 118 .ioctl = drm_ioctl, 119 .mmap = i810_mmap_buffers,
-1
drivers/char/drm/i830_dma.c
··· 116 117 static struct file_operations i830_buffer_fops = { 118 .open = drm_open, 119 - .flush = drm_flush, 120 .release = drm_release, 121 .ioctl = drm_ioctl, 122 .mmap = i830_mmap_buffers,
··· 116 117 static struct file_operations i830_buffer_fops = { 118 .open = drm_open, 119 .release = drm_release, 120 .ioctl = drm_ioctl, 121 .mmap = i830_mmap_buffers,