src: Move 'static' to the beginning of declaration

Change-Id: I9b2cc1bb58922d9e32202ea4c20b9aacfe308bad
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/33673
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
diff --git a/src/northbridge/intel/x4x/raminit_ddr23.c b/src/northbridge/intel/x4x/raminit_ddr23.c
index efdcbb6..dd48d8a 100644
--- a/src/northbridge/intel/x4x/raminit_ddr23.c
+++ b/src/northbridge/intel/x4x/raminit_ddr23.c
@@ -437,7 +437,7 @@
 		5200
 	};
 
-	const static u8 ddr3_turnaround_tab[3][6][4] = {
+	static const u8 ddr3_turnaround_tab[3][6][4] = {
 		{ /* DDR3 800 */
 			{0x9, 0x7, 0x7, 0x9},	/* CL = 5 */
 			{0x9, 0x7, 0x8, 0x8},	/* CL = 6 */
@@ -459,7 +459,7 @@
 	};
 
 	/* [DDR freq][0x26F & 1][pagemod] */
-	const static u8 ddr2_x252_tab[2][2][2] =  {
+	static const u8 ddr2_x252_tab[2][2][2] =  {
 		{ /* DDR2 667 */
 			{12, 16},
 			{14, 18}
@@ -470,7 +470,7 @@
 		}
 	};
 
-	const static u8 ddr3_x252_tab[3][2][2] =  {
+	static const u8 ddr3_x252_tab[3][2][2] =  {
 		{ /* DDR3 800 */
 			{16, 20},
 			{18, 22}