Commit 8da79ccd authored by Daniel Vetter's avatar Daniel Vetter Committed by Dave Airlie

drm: ->agp_init can't fail

Thanks to the removal of REQUIRE_AGP we can use a void return value
and shed a bit of complexity.
Reviewed-by: default avatarDavid Herrmann <dh.herrmann@gmail.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 24986ee0
...@@ -262,7 +262,7 @@ static int drm_pci_irq_by_busid(struct drm_device *dev, struct drm_irq_busid *p) ...@@ -262,7 +262,7 @@ static int drm_pci_irq_by_busid(struct drm_device *dev, struct drm_irq_busid *p)
return 0; return 0;
} }
static int drm_pci_agp_init(struct drm_device *dev) static void drm_pci_agp_init(struct drm_device *dev)
{ {
if (drm_core_has_AGP(dev)) { if (drm_core_has_AGP(dev)) {
if (drm_pci_device_is_agp(dev)) if (drm_pci_device_is_agp(dev))
...@@ -274,7 +274,6 @@ static int drm_pci_agp_init(struct drm_device *dev) ...@@ -274,7 +274,6 @@ static int drm_pci_agp_init(struct drm_device *dev)
1024 * 1024); 1024 * 1024);
} }
} }
return 0;
} }
static void drm_pci_agp_destroy(struct drm_device *dev) static void drm_pci_agp_destroy(struct drm_device *dev)
......
...@@ -527,11 +527,8 @@ int drm_dev_register(struct drm_device *dev, unsigned long flags) ...@@ -527,11 +527,8 @@ int drm_dev_register(struct drm_device *dev, unsigned long flags)
mutex_lock(&drm_global_mutex); mutex_lock(&drm_global_mutex);
if (dev->driver->bus->agp_init) { if (dev->driver->bus->agp_init)
ret = dev->driver->bus->agp_init(dev); dev->driver->bus->agp_init(dev);
if (ret)
goto out_unlock;
}
if (drm_core_check_feature(dev, DRIVER_MODESET)) { if (drm_core_check_feature(dev, DRIVER_MODESET)) {
ret = drm_get_minor(dev, &dev->control, DRM_MINOR_CONTROL); ret = drm_get_minor(dev, &dev->control, DRM_MINOR_CONTROL);
......
...@@ -767,7 +767,7 @@ struct drm_bus { ...@@ -767,7 +767,7 @@ struct drm_bus {
struct drm_unique *unique); struct drm_unique *unique);
int (*irq_by_busid)(struct drm_device *dev, struct drm_irq_busid *p); int (*irq_by_busid)(struct drm_device *dev, struct drm_irq_busid *p);
/* hooks that are for PCI */ /* hooks that are for PCI */
int (*agp_init)(struct drm_device *dev); void (*agp_init)(struct drm_device *dev);
void (*agp_destroy)(struct drm_device *dev); void (*agp_destroy)(struct drm_device *dev);
}; };
......
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