hwcap.h 378 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __ASMARM_HWCAP_H
  3. #define __ASMARM_HWCAP_H
  4. #include <uapi/asm/hwcap.h>
  5. #if !defined(__ASSEMBLY__)
  6. /*
  7. * This yields a mask that user programs can use to figure out what
  8. * instruction set this cpu supports.
  9. */
  10. #define ELF_HWCAP (elf_hwcap)
  11. #define ELF_HWCAP2 (elf_hwcap2)
  12. extern unsigned int elf_hwcap, elf_hwcap2;
  13. #endif
  14. #endif