aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68k/lib/muldi3.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2016-01-11 13:04:04 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2016-08-07 23:47:19 -0400
commitd13ffb5630443e6112df0263969cbdfc8ab9ab57 (patch)
tree9d9b9a3800f8ee66c6b8520d8e21414f5de83ecf /arch/m68k/lib/muldi3.c
parentalpha: move exports to actual definitions (diff)
downloadlinux-dev-d13ffb5630443e6112df0263969cbdfc8ab9ab57.tar.xz
linux-dev-d13ffb5630443e6112df0263969cbdfc8ab9ab57.zip
m68k: move exports to definitions
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/m68k/lib/muldi3.c')
-rw-r--r--arch/m68k/lib/muldi3.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/m68k/lib/muldi3.c b/arch/m68k/lib/muldi3.c
index 9006d15b8721..6459af5b2af0 100644
--- a/arch/m68k/lib/muldi3.c
+++ b/arch/m68k/lib/muldi3.c
@@ -14,6 +14,9 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details. */
+#include <linux/compiler.h>
+#include <linux/export.h>
+
#ifdef CONFIG_CPU_HAS_NO_MULDIV64
#define SI_TYPE_SIZE 32
@@ -90,3 +93,4 @@ __muldi3 (DItype u, DItype v)
return w.ll;
}
+EXPORT_SYMBOL(__muldi3);