@@ -744,7 +744,7 @@ static const struct arm64_cpu_capabilities arm64_features[] = {
744
744
.hwcap = cap, \
745
745
}
746
746
747
- static const struct arm64_cpu_capabilities arm64_hwcaps [] = {
747
+ static const struct arm64_cpu_capabilities arm64_elf_hwcaps [] = {
748
748
HWCAP_CAP (SYS_ID_AA64ISAR0_EL1 , ID_AA64ISAR0_AES_SHIFT , FTR_UNSIGNED , 2 , CAP_HWCAP , HWCAP_PMULL ),
749
749
HWCAP_CAP (SYS_ID_AA64ISAR0_EL1 , ID_AA64ISAR0_AES_SHIFT , FTR_UNSIGNED , 1 , CAP_HWCAP , HWCAP_AES ),
750
750
HWCAP_CAP (SYS_ID_AA64ISAR0_EL1 , ID_AA64ISAR0_SHA1_SHIFT , FTR_UNSIGNED , 1 , CAP_HWCAP , HWCAP_SHA1 ),
@@ -765,7 +765,7 @@ static const struct arm64_cpu_capabilities arm64_hwcaps[] = {
765
765
{},
766
766
};
767
767
768
- static void __init cap_set_hwcap (const struct arm64_cpu_capabilities * cap )
768
+ static void __init cap_set_elf_hwcap (const struct arm64_cpu_capabilities * cap )
769
769
{
770
770
switch (cap -> hwcap_type ) {
771
771
case CAP_HWCAP :
@@ -786,7 +786,7 @@ static void __init cap_set_hwcap(const struct arm64_cpu_capabilities *cap)
786
786
}
787
787
788
788
/* Check if we have a particular HWCAP enabled */
789
- static bool __maybe_unused cpus_have_hwcap (const struct arm64_cpu_capabilities * cap )
789
+ static bool cpus_have_elf_hwcap (const struct arm64_cpu_capabilities * cap )
790
790
{
791
791
bool rc ;
792
792
@@ -810,14 +810,14 @@ static bool __maybe_unused cpus_have_hwcap(const struct arm64_cpu_capabilities *
810
810
return rc ;
811
811
}
812
812
813
- static void __init setup_cpu_hwcaps (void )
813
+ static void __init setup_elf_hwcaps (void )
814
814
{
815
815
int i ;
816
- const struct arm64_cpu_capabilities * hwcaps = arm64_hwcaps ;
816
+ const struct arm64_cpu_capabilities * hwcaps = arm64_elf_hwcaps ;
817
817
818
818
for (i = 0 ; hwcaps [i ].matches ; i ++ )
819
819
if (hwcaps [i ].matches (& hwcaps [i ]))
820
- cap_set_hwcap (& hwcaps [i ]);
820
+ cap_set_elf_hwcap (& hwcaps [i ]);
821
821
}
822
822
823
823
void update_cpu_capabilities (const struct arm64_cpu_capabilities * caps ,
@@ -955,8 +955,8 @@ void verify_local_cpu_capabilities(void)
955
955
caps [i ].enable (NULL );
956
956
}
957
957
958
- for (i = 0 , caps = arm64_hwcaps ; caps [i ].matches ; i ++ ) {
959
- if (!cpus_have_hwcap (& caps [i ]))
958
+ for (i = 0 , caps = arm64_elf_hwcaps ; caps [i ].matches ; i ++ ) {
959
+ if (!cpus_have_elf_hwcap (& caps [i ]))
960
960
continue ;
961
961
if (!feature_matches (__raw_read_system_reg (caps [i ].sys_reg ), & caps [i ])) {
962
962
pr_crit ("CPU%d: missing HWCAP: %s\n" ,
@@ -979,7 +979,7 @@ void __init setup_cpu_features(void)
979
979
980
980
/* Set the CPU feature capabilies */
981
981
setup_feature_capabilities ();
982
- setup_cpu_hwcaps ();
982
+ setup_elf_hwcaps ();
983
983
984
984
/* Advertise that we have computed the system capabilities */
985
985
set_sys_caps_initialised ();
0 commit comments