git: 9e93fb11a7fa - stable/13 - Sort the arm64 cpu_implementers list by name

Andrew Turner andrew at FreeBSD.org
Mon Sep 27 14:08:42 UTC 2021


The branch stable/13 has been updated by andrew:

URL: https://cgit.FreeBSD.org/src/commit/?id=9e93fb11a7faf914c1a18d556d002c3166ca9f35

commit 9e93fb11a7faf914c1a18d556d002c3166ca9f35
Author:     Andrew Turner <andrew at FreeBSD.org>
AuthorDate: 2021-08-11 15:29:09 +0000
Commit:     Andrew Turner <andrew at FreeBSD.org>
CommitDate: 2021-09-27 08:36:38 +0000

    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
    
    (cherry picked from commit 29b25b13c777a682e33edc9e2d05e87339b03cc3)
---
 sys/arm64/arm64/identcpu.c | 8 ++++----
 1 file 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,
 };
 


More information about the dev-commits-src-branches mailing list