export-internal.h 502 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Please do not include this explicitly.
  4. * This is used by C files generated by modpost.
  5. */
  6. #ifndef __LINUX_EXPORT_INTERNAL_H__
  7. #define __LINUX_EXPORT_INTERNAL_H__
  8. #include <linux/compiler.h>
  9. #include <linux/types.h>
  10. #define SYMBOL_CRC(sym, crc, sec) \
  11. asm(".section \"___kcrctab" sec "+" #sym "\",\"a\"" "\n" \
  12. "__crc_" #sym ":" "\n" \
  13. ".long " #crc "\n" \
  14. ".previous" "\n")
  15. #endif /* __LINUX_EXPORT_INTERNAL_H__ */