The branch main has been updated by andrew:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=29b25b13c777a682e33edc9e2d05e87339b03cc3

commit 29b25b13c777a682e33edc9e2d05e87339b03cc3
Author:     Andrew Turner <[email protected]>
AuthorDate: 2021-08-11 15:29:09 +0000
Commit:     Andrew Turner <[email protected]>
CommitDate: 2021-08-12 08:53:06 +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
---
 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,
 };
 
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-main
To unsubscribe, send any mail to "[email protected]"

Reply via email to