diff options
-rw-r--r-- | linux-core/r128_drv.c | 5 | ||||
-rw-r--r-- | linux-core/radeon_drv.c | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/linux-core/r128_drv.c b/linux-core/r128_drv.c index 73be2027..160cc865 100644 --- a/linux-core/r128_drv.c +++ b/linux-core/r128_drv.c @@ -88,8 +88,7 @@ static struct drm_driver driver = { .get_reg_ofs = drm_core_get_reg_ofs, .postinit = postinit, .version = version, - .ioctls = ioctls, - .num_ioctls = DRM_ARRAY_SIZE(ioctls), + .ioctls = r128_ioctls, .dma_ioctl = r128_cce_buffers, .fops = { .owner = THIS_MODULE, @@ -116,6 +115,8 @@ static int probe(struct pci_dev *pdev, const struct pci_device_id *ent) static int __init r128_init(void) { + driver.num_ioctls = r128_max_ioctl; + return drm_init(&driver, pciidlist); } diff --git a/linux-core/radeon_drv.c b/linux-core/radeon_drv.c index 4de3d80d..a33cbcf1 100644 --- a/linux-core/radeon_drv.c +++ b/linux-core/radeon_drv.c @@ -94,7 +94,6 @@ static struct drm_driver driver = { .postinit = postinit, .version = version, .ioctls = radeon_ioctls, - .num_ioctls = DRM_ARRAY_SIZE(radeon_ioctls), .dma_ioctl = radeon_cp_buffers, .fops = { .owner = THIS_MODULE, @@ -120,6 +119,7 @@ static int probe(struct pci_dev *pdev, const struct pci_device_id *ent) static int __init radeon_init(void) { + driver.num_ioctls = radeon_max_ioctl; return drm_init(&driver, pciidlist); } |