2007-07-12 23:10:22 +08:00
|
|
|
#ifndef __ASMARM_HWCAP_H
|
|
|
|
#define __ASMARM_HWCAP_H
|
|
|
|
|
2012-10-12 20:05:52 +08:00
|
|
|
#include <uapi/asm/hwcap.h>
|
2007-07-12 23:10:22 +08:00
|
|
|
|
2011-12-13 23:07:49 +08:00
|
|
|
#if !defined(__ASSEMBLY__)
|
2007-07-12 23:10:22 +08:00
|
|
|
/*
|
|
|
|
* This yields a mask that user programs can use to figure out what
|
|
|
|
* instruction set this cpu supports.
|
|
|
|
*/
|
|
|
|
#define ELF_HWCAP (elf_hwcap)
|
2014-02-20 05:28:40 +08:00
|
|
|
#define ELF_HWCAP2 (elf_hwcap2)
|
|
|
|
extern unsigned int elf_hwcap, elf_hwcap2;
|
2007-07-12 23:10:22 +08:00
|
|
|
#endif
|
2011-12-13 23:07:49 +08:00
|
|
|
#endif
|