Commit 02f64b2d authored by Gerd Hoffmann's avatar Gerd Hoffmann

drm/vram: drop DRM_VRAM_MM_FILE_OPERATIONS

Not needed any more because we don't have vram specific fops
any more.  DEFINE_DRM_GEM_FOPS() can be used instead.
Signed-off-by: default avatarGerd Hoffmann <kraxel@redhat.com>
Reviewed-by: default avatarThomas Zimmermann <tzimmermann@suse.de>
Acked-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20191016115203.20095-12-kraxel@redhat.com
parent b4b1c669
...@@ -200,10 +200,7 @@ static struct pci_driver ast_pci_driver = { ...@@ -200,10 +200,7 @@ static struct pci_driver ast_pci_driver = {
.driver.pm = &ast_pm_ops, .driver.pm = &ast_pm_ops,
}; };
static const struct file_operations ast_fops = { DEFINE_DRM_GEM_FOPS(ast_fops);
.owner = THIS_MODULE,
DRM_VRAM_MM_FILE_OPERATIONS
};
static struct drm_driver driver = { static struct drm_driver driver = {
.driver_features = DRIVER_MODESET | DRIVER_GEM, .driver_features = DRIVER_MODESET | DRIVER_GEM,
......
...@@ -58,10 +58,7 @@ static int bochs_load(struct drm_device *dev) ...@@ -58,10 +58,7 @@ static int bochs_load(struct drm_device *dev)
return ret; return ret;
} }
static const struct file_operations bochs_fops = { DEFINE_DRM_GEM_FOPS(bochs_fops);
.owner = THIS_MODULE,
DRM_VRAM_MM_FILE_OPERATIONS
};
static struct drm_driver bochs_driver = { static struct drm_driver bochs_driver = {
.driver_features = DRIVER_GEM | DRIVER_MODESET | DRIVER_ATOMIC, .driver_features = DRIVER_GEM | DRIVER_MODESET | DRIVER_ATOMIC,
......
...@@ -26,10 +26,7 @@ ...@@ -26,10 +26,7 @@
#include "hibmc_drm_drv.h" #include "hibmc_drm_drv.h"
#include "hibmc_drm_regs.h" #include "hibmc_drm_regs.h"
static const struct file_operations hibmc_fops = { DEFINE_DRM_GEM_FOPS(hibmc_fops);
.owner = THIS_MODULE,
DRM_VRAM_MM_FILE_OPERATIONS
};
static irqreturn_t hibmc_drm_interrupt(int irq, void *arg) static irqreturn_t hibmc_drm_interrupt(int irq, void *arg)
{ {
......
...@@ -58,10 +58,7 @@ static void mga_pci_remove(struct pci_dev *pdev) ...@@ -58,10 +58,7 @@ static void mga_pci_remove(struct pci_dev *pdev)
drm_put_dev(dev); drm_put_dev(dev);
} }
static const struct file_operations mgag200_driver_fops = { DEFINE_DRM_GEM_FOPS(mgag200_driver_fops);
.owner = THIS_MODULE,
DRM_VRAM_MM_FILE_OPERATIONS
};
static struct drm_driver driver = { static struct drm_driver driver = {
.driver_features = DRIVER_GEM | DRIVER_MODESET, .driver_features = DRIVER_GEM | DRIVER_MODESET,
......
...@@ -181,10 +181,7 @@ static struct pci_driver vbox_pci_driver = { ...@@ -181,10 +181,7 @@ static struct pci_driver vbox_pci_driver = {
#endif #endif
}; };
static const struct file_operations vbox_fops = { DEFINE_DRM_GEM_FOPS(vbox_fops);
.owner = THIS_MODULE,
DRM_VRAM_MM_FILE_OPERATIONS
};
static struct drm_driver driver = { static struct drm_driver driver = {
.driver_features = .driver_features =
......
...@@ -184,22 +184,4 @@ struct drm_vram_mm *drm_vram_helper_alloc_mm( ...@@ -184,22 +184,4 @@ struct drm_vram_mm *drm_vram_helper_alloc_mm(
struct drm_device *dev, uint64_t vram_base, size_t vram_size); struct drm_device *dev, uint64_t vram_base, size_t vram_size);
void drm_vram_helper_release_mm(struct drm_device *dev); void drm_vram_helper_release_mm(struct drm_device *dev);
/**
* define DRM_VRAM_MM_FILE_OPERATIONS - default callback functions for \
&struct file_operations
*
* Drivers that use VRAM MM can use this macro to initialize
* &struct file_operations with default functions.
*/
#define DRM_VRAM_MM_FILE_OPERATIONS \
.llseek = no_llseek, \
.read = drm_read, \
.poll = drm_poll, \
.unlocked_ioctl = drm_ioctl, \
.compat_ioctl = drm_compat_ioctl, \
.mmap = drm_gem_mmap, \
.open = drm_open, \
.release = drm_release \
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment