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: David Herrmann <dh.herrmann@gmail.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
Daniel Vetter
2013-12-11 11:34:34 +01:00
committed by Dave Airlie
parent 24986ee069
commit 8da79ccd1a
3 changed files with 4 additions and 8 deletions
+1 -1
View File
@@ -767,7 +767,7 @@ struct drm_bus {
struct drm_unique *unique);
int (*irq_by_busid)(struct drm_device *dev, struct drm_irq_busid *p);
/* 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);
};