diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-01-11 19:04:04 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-08-08 05:47:19 +0200 |
commit | d13ffb5630443e6112df0263969cbdfc8ab9ab57 (patch) | |
tree | 9d9b9a3800f8ee66c6b8520d8e21414f5de83ecf /arch/m68k/lib/ashrdi3.c | |
parent | alpha: move exports to actual definitions (diff) | |
download | linux-d13ffb5630443e6112df0263969cbdfc8ab9ab57.tar.xz 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/ashrdi3.c')
-rw-r--r-- | arch/m68k/lib/ashrdi3.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/m68k/lib/ashrdi3.c b/arch/m68k/lib/ashrdi3.c index 1d59345f36c6..e6565a3ee2c3 100644 --- a/arch/m68k/lib/ashrdi3.c +++ b/arch/m68k/lib/ashrdi3.c @@ -13,6 +13,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> + #define BITS_PER_UNIT 8 typedef int SItype __attribute__ ((mode (SI))); @@ -56,3 +59,4 @@ __ashrdi3 (DItype u, word_type b) return w.ll; } +EXPORT_SYMBOL(__ashrdi3); |