Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __ASMARM_HWCAP_H
0003 #define __ASMARM_HWCAP_H
0004 
0005 #include <uapi/asm/hwcap.h>
0006 
0007 #if !defined(__ASSEMBLY__)
0008 /*
0009  * This yields a mask that user programs can use to figure out what
0010  * instruction set this cpu supports.
0011  */
0012 #define ELF_HWCAP   (elf_hwcap)
0013 #define ELF_HWCAP2  (elf_hwcap2)
0014 extern unsigned int elf_hwcap, elf_hwcap2;
0015 #endif
0016 #endif