This source file includes following definitions.
- savage_init
- savage_exit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26 #include <linux/module.h>
27
28 #include <drm/drm_drv.h>
29 #include <drm/drm_file.h>
30 #include <drm/drm_pci.h>
31 #include <drm/drm_pciids.h>
32
33 #include "savage_drv.h"
34
35 static struct pci_device_id pciidlist[] = {
36 savage_PCI_IDS
37 };
38
39 static const struct file_operations savage_driver_fops = {
40 .owner = THIS_MODULE,
41 .open = drm_open,
42 .release = drm_release,
43 .unlocked_ioctl = drm_ioctl,
44 .mmap = drm_legacy_mmap,
45 .poll = drm_poll,
46 .compat_ioctl = drm_compat_ioctl,
47 .llseek = noop_llseek,
48 };
49
50 static struct drm_driver driver = {
51 .driver_features =
52 DRIVER_USE_AGP | DRIVER_HAVE_DMA | DRIVER_PCI_DMA | DRIVER_LEGACY,
53 .dev_priv_size = sizeof(drm_savage_buf_priv_t),
54 .load = savage_driver_load,
55 .firstopen = savage_driver_firstopen,
56 .preclose = savage_reclaim_buffers,
57 .lastclose = savage_driver_lastclose,
58 .unload = savage_driver_unload,
59 .ioctls = savage_ioctls,
60 .dma_ioctl = savage_bci_buffers,
61 .fops = &savage_driver_fops,
62 .name = DRIVER_NAME,
63 .desc = DRIVER_DESC,
64 .date = DRIVER_DATE,
65 .major = DRIVER_MAJOR,
66 .minor = DRIVER_MINOR,
67 .patchlevel = DRIVER_PATCHLEVEL,
68 };
69
70 static struct pci_driver savage_pci_driver = {
71 .name = DRIVER_NAME,
72 .id_table = pciidlist,
73 };
74
75 static int __init savage_init(void)
76 {
77 driver.num_ioctls = savage_max_ioctl;
78 return drm_legacy_pci_init(&driver, &savage_pci_driver);
79 }
80
81 static void __exit savage_exit(void)
82 {
83 drm_legacy_pci_exit(&driver, &savage_pci_driver);
84 }
85
86 module_init(savage_init);
87 module_exit(savage_exit);
88
89 MODULE_AUTHOR(DRIVER_AUTHOR);
90 MODULE_DESCRIPTION(DRIVER_DESC);
91 MODULE_LICENSE("GPL and additional rights");