diff mbox series

[RFC,1/9] x86: Remove HWCAP_START and HWCAP_COUNT

Message ID 20240607114543.659306-2-stli@linux.ibm.com
State New
Headers show
Series Remove legacy platform bits and cleanups | expand

Commit Message

Stefan Liebler June 7, 2024, 11:42 a.m. UTC
Both defines are not used anymore.  Those were only used for
_dl_string_hwcap(), which itself was removed with commit
ab40f20364f4a417a63dd51fdd943742070bfe96
"elf: Remove _dl_string_hwcap"

Just clean up.
---
 sysdeps/x86/dl-hwcap.h | 6 ------
 1 file changed, 6 deletions(-)

Comments

Adhemerval Zanella June 11, 2024, 6:14 p.m. UTC | #1
On 07/06/24 08:42, Stefan Liebler wrote:
> Both defines are not used anymore.  Those were only used for
> _dl_string_hwcap(), which itself was removed with commit
> ab40f20364f4a417a63dd51fdd943742070bfe96
> "elf: Remove _dl_string_hwcap"
> 
> Just clean up.

LGTM, thanks.

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>

> ---
>  sysdeps/x86/dl-hwcap.h | 6 ------
>  1 file changed, 6 deletions(-)
> 
> diff --git a/sysdeps/x86/dl-hwcap.h b/sysdeps/x86/dl-hwcap.h
> index 21dd24d5d2..e14e755bd7 100644
> --- a/sysdeps/x86/dl-hwcap.h
> +++ b/sysdeps/x86/dl-hwcap.h
> @@ -23,23 +23,17 @@
>     to cover all platforms and hardware capabilities.  */
>  # define HWCAP_PLATFORMS_START	0
>  # define HWCAP_PLATFORMS_COUNT	4
> -# define HWCAP_START		0
> -# define HWCAP_COUNT		3
>  # define HWCAP_IMPORTANT \
>    (HWCAP_X86_SSE2 | HWCAP_X86_64 | HWCAP_X86_AVX512_1)
>  #elif defined __x86_64__
>  /* For 64 bit, only cover x86-64 platforms and capabilities.  */
>  # define HWCAP_PLATFORMS_START	2
>  # define HWCAP_PLATFORMS_COUNT	4
> -# define HWCAP_START		1
> -# define HWCAP_COUNT		3
>  # define HWCAP_IMPORTANT	(HWCAP_X86_64 | HWCAP_X86_AVX512_1)
>  #else
>  /* For 32 bit, only cover i586, i686 and SSE2.  */
>  # define HWCAP_PLATFORMS_START	0
>  # define HWCAP_PLATFORMS_COUNT	2
> -# define HWCAP_START		0
> -# define HWCAP_COUNT		1
>  # define HWCAP_IMPORTANT	(HWCAP_X86_SSE2)
>  #endif
>
diff mbox series

Patch

diff --git a/sysdeps/x86/dl-hwcap.h b/sysdeps/x86/dl-hwcap.h
index 21dd24d5d2..e14e755bd7 100644
--- a/sysdeps/x86/dl-hwcap.h
+++ b/sysdeps/x86/dl-hwcap.h
@@ -23,23 +23,17 @@ 
    to cover all platforms and hardware capabilities.  */
 # define HWCAP_PLATFORMS_START	0
 # define HWCAP_PLATFORMS_COUNT	4
-# define HWCAP_START		0
-# define HWCAP_COUNT		3
 # define HWCAP_IMPORTANT \
   (HWCAP_X86_SSE2 | HWCAP_X86_64 | HWCAP_X86_AVX512_1)
 #elif defined __x86_64__
 /* For 64 bit, only cover x86-64 platforms and capabilities.  */
 # define HWCAP_PLATFORMS_START	2
 # define HWCAP_PLATFORMS_COUNT	4
-# define HWCAP_START		1
-# define HWCAP_COUNT		3
 # define HWCAP_IMPORTANT	(HWCAP_X86_64 | HWCAP_X86_AVX512_1)
 #else
 /* For 32 bit, only cover i586, i686 and SSE2.  */
 # define HWCAP_PLATFORMS_START	0
 # define HWCAP_PLATFORMS_COUNT	2
-# define HWCAP_START		0
-# define HWCAP_COUNT		1
 # define HWCAP_IMPORTANT	(HWCAP_X86_SSE2)
 #endif