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

Commit 4e0cd681 authored by benjamin.gaignard@linaro.org's avatar benjamin.gaignard@linaro.org Committed by Dave Airlie
Browse files

drm: sti: fix module compilation issue



When compiling in module some symbol aren't missing,
export them correctly.

Signed-off-by: default avatarBenjamin Gaignard <benjamin.gaignard@linaro.org>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 731d7545
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -194,3 +194,4 @@ struct drm_plane *sti_drm_plane_init(struct drm_device *dev,

	return &layer->plane;
}
EXPORT_SYMBOL(sti_drm_plane_init);
+1 −0
Original line number Diff line number Diff line
@@ -816,6 +816,7 @@ struct sti_layer *sti_hqvdp_create(struct device *dev)

	return &hqvdp->layer;
}
EXPORT_SYMBOL(sti_hqvdp_create);

static void sti_hqvdp_init_plugs(struct sti_hqvdp *hqvdp)
{
+2 −0
Original line number Diff line number Diff line
@@ -40,6 +40,7 @@ const char *sti_layer_to_str(struct sti_layer *layer)
		return "<UNKNOWN LAYER>";
	}
}
EXPORT_SYMBOL(sti_layer_to_str);

struct sti_layer *sti_layer_create(struct device *dev, int desc,
				   void __iomem *baseaddr)
@@ -77,6 +78,7 @@ struct sti_layer *sti_layer_create(struct device *dev, int desc,

	return layer;
}
EXPORT_SYMBOL(sti_layer_create);

int sti_layer_prepare(struct sti_layer *layer,
		      struct drm_crtc *crtc,