config/arm: sort in alphabetical order

Message ID 20240307060210.114-1-anoobj@marvell.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series config/arm: sort in alphabetical order |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/loongarch-compilation success Compilation OK
ci/loongarch-unit-testing success Unit Testing PASS
ci/Intel-compilation success Compilation OK
ci/intel-Testing success Testing PASS
ci/intel-Functional success Functional PASS
ci/iol-mellanox-Performance success Performance Testing PASS
ci/iol-intel-Performance success Performance Testing PASS
ci/github-robot: build success github build: passed
ci/iol-abi-testing success Testing PASS
ci/iol-unit-amd64-testing success Testing PASS
ci/iol-compile-amd64-testing success Testing PASS
ci/iol-unit-arm64-testing success Testing PASS
ci/iol-compile-arm64-testing success Testing PASS
ci/iol-intel-Functional success Functional Testing PASS
ci/iol-broadcom-Performance success Performance Testing PASS
ci/iol-broadcom-Functional success Functional Testing PASS
ci/iol-sample-apps-testing success Testing PASS

Commit Message

Anoob Joseph March 7, 2024, 6:02 a.m. UTC
  Move 'soc_cn9k' above 'soc_cn10k' to have the list alphabetically
sorted.

Signed-off-by: Anoob Joseph <anoobj@marvell.com>
---
 config/arm/meson.build | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)
  

Comments

Morten Brørup March 7, 2024, 7:36 a.m. UTC | #1
> From: Anoob Joseph [mailto:anoobj@marvell.com]
> Sent: Thursday, 7 March 2024 07.02
> 
> Move 'soc_cn9k' above 'soc_cn10k' to have the list alphabetically
> sorted.
> 
> Signed-off-by: Anoob Joseph <anoobj@marvell.com>
> ---

Agree, 9 comes before 10.

Reviewed-by: Morten Brørup <mb@smartsharesystems.com>
  
Honnappa Nagarahalli March 7, 2024, 2:03 p.m. UTC | #2
> On Mar 7, 2024, at 12:02 AM, Anoob Joseph <anoobj@marvell.com> wrote:
> 
> Move 'soc_cn9k' above 'soc_cn10k' to have the list alphabetically
> sorted.
> 
> Signed-off-by: Anoob Joseph <anoobj@marvell.com>
Thank you

Reviewed-by: Honnappa Nagarahalli <honnappa.nagarahalli@arm.com>

> ---
> config/arm/meson.build | 20 ++++++++++----------
> 1 file changed, 10 insertions(+), 10 deletions(-)
> 
> diff --git a/config/arm/meson.build b/config/arm/meson.build
> index 0c24aa8293..3f5fb0f242 100644
> --- a/config/arm/meson.build
> +++ b/config/arm/meson.build
> @@ -382,6 +382,16 @@ soc_centriq2400 = {
>     'numa': false
> }
> 
> +soc_cn9k = {
> +    'description': 'Marvell OCTEON 9',
> +    'implementer': '0x43',
> +    'part_number': '0xb2',
> +    'numa': false,
> +    'flags': [
> +        ['RTE_IOVA_IN_MBUF', 0]
> +    ]
> +}
> +
> soc_cn10k = {
>     'description' : 'Marvell OCTEON 10',
>     'implementer' : '0x41',
> @@ -516,16 +526,6 @@ soc_odyssey = {
>     ],
> }
> 
> -soc_cn9k = {
> -    'description': 'Marvell OCTEON 9',
> -    'implementer': '0x43',
> -    'part_number': '0xb2',
> -    'numa': false,
> -    'flags': [
> -        ['RTE_IOVA_IN_MBUF', 0]
> -    ]
> -}
> -
> soc_stingray = {
>     'description': 'Broadcom Stingray',
>     'implementer': '0x41',
> -- 
> 2.25.1
>
  
Thomas Monjalon March 7, 2024, 3:43 p.m. UTC | #3
07/03/2024 15:03, Honnappa Nagarahalli:
> 
> > On Mar 7, 2024, at 12:02 AM, Anoob Joseph <anoobj@marvell.com> wrote:
> > 
> > Move 'soc_cn9k' above 'soc_cn10k' to have the list alphabetically
> > sorted.
> > 
> > Signed-off-by: Anoob Joseph <anoobj@marvell.com>
> Thank you
> 
> Reviewed-by: Honnappa Nagarahalli <honnappa.nagarahalli@arm.com>

Applied, thanks.
  

Patch

diff --git a/config/arm/meson.build b/config/arm/meson.build
index 0c24aa8293..3f5fb0f242 100644
--- a/config/arm/meson.build
+++ b/config/arm/meson.build
@@ -382,6 +382,16 @@  soc_centriq2400 = {
     'numa': false
 }
 
+soc_cn9k = {
+    'description': 'Marvell OCTEON 9',
+    'implementer': '0x43',
+    'part_number': '0xb2',
+    'numa': false,
+    'flags': [
+        ['RTE_IOVA_IN_MBUF', 0]
+    ]
+}
+
 soc_cn10k = {
     'description' : 'Marvell OCTEON 10',
     'implementer' : '0x41',
@@ -516,16 +526,6 @@  soc_odyssey = {
     ],
 }
 
-soc_cn9k = {
-    'description': 'Marvell OCTEON 9',
-    'implementer': '0x43',
-    'part_number': '0xb2',
-    'numa': false,
-    'flags': [
-        ['RTE_IOVA_IN_MBUF', 0]
-    ]
-}
-
 soc_stingray = {
     'description': 'Broadcom Stingray',
     'implementer': '0x41',