|
@@ -18,6 +18,7 @@
|
|
|
*/
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
+#include <linux/module.h>
|
|
|
#include <linux/types.h>
|
|
|
#include <linux/err.h>
|
|
|
#include <linux/slab.h>
|
|
@@ -839,11 +840,13 @@ int dss_feat_get_num_mgrs(void)
|
|
|
{
|
|
|
return omap_current_dss_features->num_mgrs;
|
|
|
}
|
|
|
+EXPORT_SYMBOL(dss_feat_get_num_mgrs);
|
|
|
|
|
|
int dss_feat_get_num_ovls(void)
|
|
|
{
|
|
|
return omap_current_dss_features->num_ovls;
|
|
|
}
|
|
|
+EXPORT_SYMBOL(dss_feat_get_num_ovls);
|
|
|
|
|
|
int dss_feat_get_num_wbs(void)
|
|
|
{
|
|
@@ -864,16 +867,19 @@ enum omap_display_type dss_feat_get_supported_displays(enum omap_channel channel
|
|
|
{
|
|
|
return omap_current_dss_features->supported_displays[channel];
|
|
|
}
|
|
|
+EXPORT_SYMBOL(dss_feat_get_supported_displays);
|
|
|
|
|
|
enum omap_dss_output_id dss_feat_get_supported_outputs(enum omap_channel channel)
|
|
|
{
|
|
|
return omap_current_dss_features->supported_outputs[channel];
|
|
|
}
|
|
|
+EXPORT_SYMBOL(dss_feat_get_supported_outputs);
|
|
|
|
|
|
enum omap_color_mode dss_feat_get_supported_color_modes(enum omap_plane plane)
|
|
|
{
|
|
|
return omap_current_dss_features->supported_color_modes[plane];
|
|
|
}
|
|
|
+EXPORT_SYMBOL(dss_feat_get_supported_color_modes);
|
|
|
|
|
|
enum omap_overlay_caps dss_feat_get_overlay_caps(enum omap_plane plane)
|
|
|
{
|