diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-01-11 13:04:04 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-08-07 23:47:19 -0400 |
commit | d13ffb5630443e6112df0263969cbdfc8ab9ab57 (patch) | |
tree | 9d9b9a3800f8ee66c6b8520d8e21414f5de83ecf /arch/m68k/lib/muldi3.c | |
parent | 00fc0e0dda6286407f3854cd71a125f519a5689c (diff) | |
download | blackbird-obmc-linux-d13ffb5630443e6112df0263969cbdfc8ab9ab57.tar.gz blackbird-obmc-linux-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.c | 4 |
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); |