Linux Audio

Check our new training course

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