Hi Pranith, On Mon, Aug 18, 2014 at 8:24 AM, Pranith Kumar <bobby.pr...@gmail.com> wrote: > Fix building errors occuring due to a missing export of flush_icache_range() > in > architectures missing the export.
Can you be a little more specific here, what build errors? [...] > diff --git a/arch/frv/include/asm/cacheflush.h > b/arch/frv/include/asm/cacheflush.h > index edbac54..07ee4b3 100644 > --- a/arch/frv/include/asm/cacheflush.h > +++ b/arch/frv/include/asm/cacheflush.h > @@ -72,6 +72,7 @@ static inline void flush_icache_range(unsigned long start, > unsigned long end) > { > frv_cache_wback_inv(start, end); > } > +EXPORT_SYMBOL(flush_icache_range); EXPORT_SYMBOL should not be placed into header file as it defines a non-static variable. [...] > diff --git a/arch/metag/include/asm/cacheflush.h > b/arch/metag/include/asm/cacheflush.h > index 7787ec5..117c212 100644 > --- a/arch/metag/include/asm/cacheflush.h > +++ b/arch/metag/include/asm/cacheflush.h > @@ -124,6 +124,7 @@ static inline void flush_icache_range(unsigned long > address, > metag_code_cache_flush((void *) address, endaddr - address); > #endif > } > +EXPORT_SYMBOL(flush_icache_range); Same here. -- Thanks. -- Max -- To unsubscribe from this list: send the line "unsubscribe linux-metag" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html