On Wed, Aug 28, 2013 at 11:44:47AM +0100, Sudeep KarkadaNagesha wrote:
>  static inline u64 arch_counter_get_cntvct(void)
> diff --git a/arch/arm64/include/asm/hwcap.h b/arch/arm64/include/asm/hwcap.h
> index 6d4482f..530fa879 100644
> --- a/arch/arm64/include/asm/hwcap.h
> +++ b/arch/arm64/include/asm/hwcap.h
> @@ -30,6 +30,7 @@
>  #define COMPAT_HWCAP_IDIVA   (1 << 17)
>  #define COMPAT_HWCAP_IDIVT   (1 << 18)
>  #define COMPAT_HWCAP_IDIV    (COMPAT_HWCAP_IDIVA|COMPAT_HWCAP_IDIVT)
> +#define COMPAT_HWCAP_EVTSTRM (1 << 21)
>  
>  #ifndef __ASSEMBLY__
>  /*
> @@ -37,11 +38,16 @@
>   * instruction set this cpu supports.
>   */
>  #define ELF_HWCAP            (elf_hwcap)
> -#define COMPAT_ELF_HWCAP     (COMPAT_HWCAP_HALF|COMPAT_HWCAP_THUMB|\
> +#ifdef CONFIG_COMPAT
> +#define COMPAT_ELF_HWCAP     (compat_elf_hwcap)
> +#define COMPAT_ELF_HWCAP_DEFAULT     \
> +                             (COMPAT_HWCAP_HALF|COMPAT_HWCAP_THUMB|\
>                                COMPAT_HWCAP_FAST_MULT|COMPAT_HWCAP_EDSP|\
>                                COMPAT_HWCAP_TLS|COMPAT_HWCAP_VFP|\
>                                COMPAT_HWCAP_VFPv3|COMPAT_HWCAP_VFPv4|\
>                                COMPAT_HWCAP_NEON|COMPAT_HWCAP_IDIV)
> +extern unsigned int compat_elf_hwcap;
> +#endif

I think you can move the default to the setup.c file, it's not of any
use apart from initialisation.

-- 
Catalin
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to