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

Commit ced0f005 authored by Hirokazu Takata's avatar Hirokazu Takata
Browse files

m32r: export delay loop symbols



- Move EXPORT_SYMBOL lines of delay loop functions
  from arch/m32r/kernel/m32r_ksyms.c to arch/m32r/lib/delay.c.
- Export __ndelay.

Signed-off-by: default avatarHirokazu Takata <takata@linux-m32r.org>
parent 2cff5e1a
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -23,12 +23,6 @@ EXPORT_SYMBOL(__ioremap);
EXPORT_SYMBOL(iounmap);
EXPORT_SYMBOL(kernel_thread);

/* Networking helper routines. */
/* Delay loops */
EXPORT_SYMBOL(__udelay);
EXPORT_SYMBOL(__delay);
EXPORT_SYMBOL(__const_udelay);

EXPORT_SYMBOL(strncpy_from_user);
EXPORT_SYMBOL(__strncpy_from_user);
EXPORT_SYMBOL(clear_user);
+4 −0
Original line number Diff line number Diff line
@@ -122,4 +122,8 @@ void __ndelay(unsigned long nsecs)
{
	__const_udelay(nsecs * 0x00005);  /* 2**32 / 1000000000 (rounded up) */
}

EXPORT_SYMBOL(__delay);
EXPORT_SYMBOL(__const_udelay);
EXPORT_SYMBOL(__udelay);
EXPORT_SYMBOL(__ndelay);