David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 1 | /* MN10300 Miscellaneous and library kernel exports |
| 2 | * |
| 3 | * Copyright (C) 2007 Matsushita Electric Industrial Co., Ltd. |
| 4 | * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public Licence |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the Licence, or (at your option) any later version. |
| 10 | */ |
| 11 | #include <linux/module.h> |
| 12 | #include <asm/uaccess.h> |
David Howells | 7fc7228 | 2008-07-04 09:59:46 -0700 | [diff] [blame] | 13 | #include <asm/pgtable.h> |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 14 | |
| 15 | |
David Howells | 7fc7228 | 2008-07-04 09:59:46 -0700 | [diff] [blame] | 16 | EXPORT_SYMBOL(empty_zero_page); |
| 17 | |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 18 | EXPORT_SYMBOL(change_bit); |
| 19 | EXPORT_SYMBOL(test_and_change_bit); |
| 20 | |
| 21 | EXPORT_SYMBOL(memcpy); |
| 22 | EXPORT_SYMBOL(memmove); |
| 23 | EXPORT_SYMBOL(memset); |
| 24 | |
| 25 | EXPORT_SYMBOL(strncpy_from_user); |
| 26 | EXPORT_SYMBOL(__strncpy_from_user); |
| 27 | EXPORT_SYMBOL(clear_user); |
| 28 | EXPORT_SYMBOL(__clear_user); |
| 29 | EXPORT_SYMBOL(__generic_copy_from_user); |
| 30 | EXPORT_SYMBOL(__generic_copy_to_user); |
| 31 | EXPORT_SYMBOL(strnlen_user); |
| 32 | |
| 33 | extern u64 __ashrdi3(u64, unsigned); |
| 34 | extern u64 __ashldi3(u64, unsigned); |
| 35 | extern u64 __lshrdi3(u64, unsigned); |
| 36 | extern s64 __negdi2(s64); |
David Howells | fc26361 | 2008-07-04 09:59:47 -0700 | [diff] [blame] | 37 | extern int __ucmpdi2(u64, u64); |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 38 | EXPORT_SYMBOL(__ashrdi3); |
| 39 | EXPORT_SYMBOL(__ashldi3); |
| 40 | EXPORT_SYMBOL(__lshrdi3); |
| 41 | EXPORT_SYMBOL(__negdi2); |
David Howells | fc26361 | 2008-07-04 09:59:47 -0700 | [diff] [blame] | 42 | EXPORT_SYMBOL(__ucmpdi2); |