/* * Copyright (C) 2017 Zihao Yu * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include <linux/export.h> #include <linux/uaccess.h> /* * Assembly functions that may be used (directly or indirectly) by modules */ EXPORT_SYMBOL(__clear_user); EXPORT_SYMBOL(__asm_copy_to_user); EXPORT_SYMBOL(__asm_copy_from_user); EXPORT_SYMBOL(memset); EXPORT_SYMBOL(memcpy);Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Olof Johansson | 15 | 45.45% | 1 | 33.33% |
Palmer Dabbelt | 12 | 36.36% | 1 | 33.33% |
Luc Van Oostenryck | 6 | 18.18% | 1 | 33.33% |
Total | 33 | 100.00% | 3 | 100.00% |