Fix the AUXV_LEN to account for hwcap and remove the ifdefs Change-Id: I303fc2c5fa4c8cea7ec9823f8580b8a66de2f58f Fujitsu: POSTK_DEBUG_ARCH_DEP_65
11 lines
190 B
C
11 lines
190 B
C
/* hwcap.h COPYRIGHT FUJITSU LIMITED 2017 */
|
|
#ifndef _UAPI__ASM_HWCAP_H
|
|
#define _UAPI__ASM_HWCAP_H
|
|
|
|
static unsigned long arch_get_hwcap(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
#endif /* _UAPI__ASM_HWCAP_H */
|