aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68k/lib/ashrdi3.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/m68k/lib/ashrdi3.c')
-rw-r--r--arch/m68k/lib/ashrdi3.c4
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
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details. */ 14GNU General Public License for more details. */
15 15
16#include <linux/compiler.h>
17#include <linux/export.h>
18
16#define BITS_PER_UNIT 8 19#define BITS_PER_UNIT 8
17 20
18typedef int SItype __attribute__ ((mode (SI))); 21typedef int SItype __attribute__ ((mode (SI)));
@@ -56,3 +59,4 @@ __ashrdi3 (DItype u, word_type b)
56 59
57 return w.ll; 60 return w.ll;
58} 61}
62EXPORT_SYMBOL(__ashrdi3);