riscv_ksyms.c 312 B

123456789101112131415
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (C) 2017 Zihao Yu
  4. */
  5. #include <linux/export.h>
  6. #include <linux/uaccess.h>
  7. /*
  8. * Assembly functions that may be used (directly or indirectly) by modules
  9. */
  10. EXPORT_SYMBOL(memset);
  11. EXPORT_SYMBOL(memcpy);
  12. EXPORT_SYMBOL(__memset);
  13. EXPORT_SYMBOL(__memcpy);