diff options
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 | |||
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 | GNU General Public License for more details. */ | 14 | GNU 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 | ||
18 | typedef int SItype __attribute__ ((mode (SI))); | 21 | typedef 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 | } |
62 | EXPORT_SYMBOL(__ashrdi3); | ||