aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Turner <andrew@FreeBSD.org>2021-08-11 15:29:09 +0000
committerAndrew Turner <andrew@FreeBSD.org>2021-08-12 08:53:06 +0000
commit29b25b13c777a682e33edc9e2d05e87339b03cc3 (patch)
tree970f370104a2d9fc93cb3099e88ceb764e17051a
parentb356030e670686df1300edf851e146c5d274e4f8 (diff)
Sort the arm64 cpu_implementers list by name
We perform a linear search, so make it easier to add new entries in the correct place. Sponsored by: The FreeBSD Foundation
-rw-r--r--sys/arm64/arm64/identcpu.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arm64/arm64/identcpu.c b/sys/arm64/arm64/identcpu.c
index 37330a8f0e3f..581e16ee82f6 100644
--- a/sys/arm64/arm64/identcpu.c
+++ b/sys/arm64/arm64/identcpu.c
@@ -220,17 +220,17 @@ static const struct cpu_parts cpu_parts_none[] = {
* Implementers table.
*/
const struct cpu_implementers cpu_implementers[] = {
+ { CPU_IMPL_APM, "APM", cpu_parts_apm },
{ CPU_IMPL_ARM, "ARM", cpu_parts_arm },
{ CPU_IMPL_BROADCOM, "Broadcom", cpu_parts_none },
{ CPU_IMPL_CAVIUM, "Cavium", cpu_parts_cavium },
{ CPU_IMPL_DEC, "DEC", cpu_parts_none },
- { CPU_IMPL_INFINEON, "IFX", cpu_parts_none },
{ CPU_IMPL_FREESCALE, "Freescale", cpu_parts_none },
+ { CPU_IMPL_INFINEON, "IFX", cpu_parts_none },
+ { CPU_IMPL_INTEL, "Intel", cpu_parts_none },
+ { CPU_IMPL_MARVELL, "Marvell", cpu_parts_none },
{ CPU_IMPL_NVIDIA, "NVIDIA", cpu_parts_none },
- { CPU_IMPL_APM, "APM", cpu_parts_apm },
{ CPU_IMPL_QUALCOMM, "Qualcomm", cpu_parts_none },
- { CPU_IMPL_MARVELL, "Marvell", cpu_parts_none },
- { CPU_IMPL_INTEL, "Intel", cpu_parts_none },
CPU_IMPLEMENTER_NONE,
};