From: Liangliang Huang Date: Wed, 29 Apr 2020 09:04:17 +0000 (+0800) Subject: MIPS: Loongson64: Switch the order of RS780E and LS7A X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=2c3cc858a68707dd710aefddd737e9f6aa0a16e1;p=uclinux-h8%2Flinux.git MIPS: Loongson64: Switch the order of RS780E and LS7A Sort the members of enum in alphabetical order is better to avoid duplicate mistakes (because the list may be grow very large), so fix it by exchanging the order. Signed-off-by: Liangliang Huang Signed-off-by: Thomas Bogendoerfer --- diff --git a/arch/mips/include/asm/mach-loongson64/boot_param.h b/arch/mips/include/asm/mach-loongson64/boot_param.h index fc9f14bc5777..f082d87665bc 100644 --- a/arch/mips/include/asm/mach-loongson64/boot_param.h +++ b/arch/mips/include/asm/mach-loongson64/boot_param.h @@ -193,8 +193,8 @@ struct boot_params { }; enum loongson_bridge_type { - RS780E = 1, - LS7A = 2 + LS7A = 1, + RS780E = 2 }; struct loongson_system_configuration {