Blackfin arch: move EXPORT_SYMBOL to the place where it is actually defined
- kernel_thread - irq_flags - checksum Signed-off-by: Mike Frysinger <vapier.adi@gmail.com> Signed-off-by: Bryan Wu <cooloney@kernel.org>
This commit is contained in:
parent
dc26aec25d
commit
fe8015ce25
4 changed files with 6 additions and 9 deletions
|
@ -38,16 +38,9 @@
|
||||||
|
|
||||||
EXPORT_SYMBOL(__ioremap);
|
EXPORT_SYMBOL(__ioremap);
|
||||||
|
|
||||||
EXPORT_SYMBOL(ip_fast_csum);
|
|
||||||
|
|
||||||
EXPORT_SYMBOL(kernel_thread);
|
|
||||||
|
|
||||||
EXPORT_SYMBOL(is_in_rom);
|
EXPORT_SYMBOL(is_in_rom);
|
||||||
EXPORT_SYMBOL(bfin_return_from_exception);
|
EXPORT_SYMBOL(bfin_return_from_exception);
|
||||||
|
|
||||||
/* Networking helper routines. */
|
|
||||||
EXPORT_SYMBOL(csum_partial_copy);
|
|
||||||
|
|
||||||
/* The following are special because they're not called
|
/* The following are special because they're not called
|
||||||
* explicitly (the C compiler generates them). Fortunately,
|
* explicitly (the C compiler generates them). Fortunately,
|
||||||
* their interface isn't gonna change any time soon now, so
|
* their interface isn't gonna change any time soon now, so
|
||||||
|
@ -96,7 +89,6 @@ EXPORT_SYMBOL(insw_8);
|
||||||
EXPORT_SYMBOL(outsl);
|
EXPORT_SYMBOL(outsl);
|
||||||
EXPORT_SYMBOL(insl);
|
EXPORT_SYMBOL(insl);
|
||||||
EXPORT_SYMBOL(insl_16);
|
EXPORT_SYMBOL(insl_16);
|
||||||
EXPORT_SYMBOL(irq_flags);
|
|
||||||
EXPORT_SYMBOL(iounmap);
|
EXPORT_SYMBOL(iounmap);
|
||||||
EXPORT_SYMBOL(blackfin_dcache_invalidate_range);
|
EXPORT_SYMBOL(blackfin_dcache_invalidate_range);
|
||||||
EXPORT_SYMBOL(blackfin_icache_dcache_flush_range);
|
EXPORT_SYMBOL(blackfin_icache_dcache_flush_range);
|
||||||
|
@ -104,7 +96,6 @@ EXPORT_SYMBOL(blackfin_icache_flush_range);
|
||||||
EXPORT_SYMBOL(blackfin_dcache_flush_range);
|
EXPORT_SYMBOL(blackfin_dcache_flush_range);
|
||||||
EXPORT_SYMBOL(blackfin_dflush_page);
|
EXPORT_SYMBOL(blackfin_dflush_page);
|
||||||
|
|
||||||
EXPORT_SYMBOL(csum_partial);
|
|
||||||
EXPORT_SYMBOL(__init_begin);
|
EXPORT_SYMBOL(__init_begin);
|
||||||
EXPORT_SYMBOL(__init_end);
|
EXPORT_SYMBOL(__init_end);
|
||||||
EXPORT_SYMBOL(_ebss_l1);
|
EXPORT_SYMBOL(_ebss_l1);
|
||||||
|
|
|
@ -154,6 +154,7 @@ pid_t kernel_thread(int (*fn) (void *), void *arg, unsigned long flags)
|
||||||
return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, ®s, 0, NULL,
|
return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, ®s, 0, NULL,
|
||||||
NULL);
|
NULL);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL(kernel_thread);
|
||||||
|
|
||||||
void flush_thread(void)
|
void flush_thread(void)
|
||||||
{
|
{
|
||||||
|
|
|
@ -29,6 +29,7 @@
|
||||||
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <linux/module.h>
|
||||||
#include <net/checksum.h>
|
#include <net/checksum.h>
|
||||||
#include <asm/checksum.h>
|
#include <asm/checksum.h>
|
||||||
|
|
||||||
|
@ -76,6 +77,7 @@ __sum16 ip_fast_csum(unsigned char *iph, unsigned int ihl)
|
||||||
{
|
{
|
||||||
return (__force __sum16)~do_csum(iph, ihl * 4);
|
return (__force __sum16)~do_csum(iph, ihl * 4);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL(ip_fast_csum);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* computes the checksum of a memory block at buff, length len,
|
* computes the checksum of a memory block at buff, length len,
|
||||||
|
@ -104,6 +106,7 @@ __wsum csum_partial(const void *buff, int len, __wsum sum)
|
||||||
|
|
||||||
return sum;
|
return sum;
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL(csum_partial);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* this routine is used for miscellaneous IP-like checksums, mainly
|
* this routine is used for miscellaneous IP-like checksums, mainly
|
||||||
|
@ -137,3 +140,4 @@ __wsum csum_partial_copy(const void *src, void *dst, int len, __wsum sum)
|
||||||
memcpy(dst, src, len);
|
memcpy(dst, src, len);
|
||||||
return csum_partial(dst, len, sum);
|
return csum_partial(dst, len, sum);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL(csum_partial_copy);
|
||||||
|
|
|
@ -65,6 +65,7 @@
|
||||||
* cannot actually mask out in hardware.
|
* cannot actually mask out in hardware.
|
||||||
*/
|
*/
|
||||||
unsigned long irq_flags = 0x1f;
|
unsigned long irq_flags = 0x1f;
|
||||||
|
EXPORT_SYMBOL(irq_flags);
|
||||||
|
|
||||||
/* The number of spurious interrupts */
|
/* The number of spurious interrupts */
|
||||||
atomic_t num_spurious;
|
atomic_t num_spurious;
|
||||||
|
|
Loading…
Reference in a new issue