The functions dss_init_hdmi_ip_ops and dss_has_feature are used by the ASoC HDMI codec. Both the ASoC codec and DSS may be built as separate kernel modules. Hence, these two functions need to be available for dynamic linking. Signed-off-by: Ricardo Neri <ricardo.neri@xxxxxx> --- drivers/video/omap2/dss/dss_features.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/video/omap2/dss/dss_features.c b/drivers/video/omap2/dss/dss_features.c index 004d34b..d5707b5 100644 --- a/drivers/video/omap2/dss/dss_features.c +++ b/drivers/video/omap2/dss/dss_features.c @@ -21,6 +21,7 @@ #include <linux/types.h> #include <linux/err.h> #include <linux/slab.h> +#include <linux/export.h> #include <video/omapdss.h> #include <plat/cpu.h> @@ -514,6 +515,7 @@ void dss_init_hdmi_ip_ops(struct hdmi_ip_data *ip_data) if (cpu_is_omap44xx()) ip_data->ops = &omap4_hdmi_functions; } +EXPORT_SYMBOL(dss_init_hdmi_ip_ops); #endif /* Functions returning values related to a DSS feature */ @@ -579,6 +581,7 @@ bool dss_has_feature(enum dss_feat_id id) { return omap_current_dss_features->has_feature & id; } +EXPORT_SYMBOL(dss_has_feature); void dss_feat_get_reg_field(enum dss_feat_reg_field id, u8 *start, u8 *end) { -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html