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

Commit dcc4d72f authored by Greg Ungerer's avatar Greg Ungerer
Browse files

m68knommu: move EXPORT of kernel_thread to function definition



The EXPORT_SYMBOL(kernel_thread) belongs at the definition of that function,
not in some other random code file. So move it there.

Signed-off-by: default avatarGreg Ungerer <gerg@uclinux.org>
parent b33972eb
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -16,10 +16,6 @@
#include <asm/checksum.h>
#include <asm/current.h>

/* platform dependent support */

EXPORT_SYMBOL(kernel_thread);

/*
 * libgcc functions - functions that are used internally by the
 * compiler...  (prototypes are not correct though, but that
+1 −0
Original line number Diff line number Diff line
@@ -151,6 +151,7 @@ int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
	set_fs(fs);
	return retval;
}
EXPORT_SYMBOL(kernel_thread);

void flush_thread(void)
{