Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 161695bf authored by Daniel Vetter's avatar Daniel Vetter Committed by Dave Airlie
Browse files

drm/omap: kill firstopen callback



KMS drivers really shouldn't need to do anything on firstopen, so kill
empty callbacks.

Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Acked-by: default avatarRob Clark <robdclark@gmail.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 5c692948
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -524,12 +524,6 @@ static int dev_open(struct drm_device *dev, struct drm_file *file)
	return 0;
}

static int dev_firstopen(struct drm_device *dev)
{
	DBG("firstopen: dev=%p", dev);
	return 0;
}

/**
 * lastclose - clean up after all DRM clients have exited
 * @dev: DRM device
@@ -609,7 +603,6 @@ static struct drm_driver omap_drm_driver = {
		.load = dev_load,
		.unload = dev_unload,
		.open = dev_open,
		.firstopen = dev_firstopen,
		.lastclose = dev_lastclose,
		.preclose = dev_preclose,
		.postclose = dev_postclose,