diff options
author | Keith Packard <keithp@keithp.com> | 2008-06-20 16:40:14 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2008-06-20 16:40:14 -0700 |
commit | 2bd9799e4cf0d778e46453422157143e36274062 (patch) | |
tree | e9a9f8c0bbda227cc5ee89eb470e2b8dc1f74f8b /linux-core/drmP.h | |
parent | 918420deefb978d4e572121b4273d717bdbfde8e (diff) |
Add device-specific proc_init and proc_cleanup hooks
This allows device drivers to add proc files
Diffstat (limited to 'linux-core/drmP.h')
-rw-r--r-- | linux-core/drmP.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/linux-core/drmP.h b/linux-core/drmP.h index 392d2ace..ec8a61d4 100644 --- a/linux-core/drmP.h +++ b/linux-core/drmP.h @@ -770,6 +770,9 @@ struct drm_driver { void (*set_version) (struct drm_device *dev, struct drm_set_version *sv); + int (*proc_init)(struct drm_minor *minor); + void (*proc_cleanup)(struct drm_minor *minor); + /** * Driver-specific constructor for drm_gem_objects, to set up * obj->driver_private. @@ -1287,7 +1290,7 @@ extern void drm_agp_chipset_flush(struct drm_device *dev); extern int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent, struct drm_driver *driver); extern int drm_put_dev(struct drm_device *dev); -extern int drm_put_minor(struct drm_minor **minor); +extern int drm_put_minor(struct drm_device *dev); extern unsigned int drm_debug; /* 1 to enable debug output */ extern struct class *drm_class; |