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/dq_dqs.c b/src/northbridge/intel/x4x/dq_dqs.c
index ed372b5..d48601d 100644
--- a/src/northbridge/intel/x4x/dq_dqs.c
+++ b/src/northbridge/intel/x4x/dq_dqs.c
@@ -88,7 +88,7 @@
 	}
 }
 
-const static u8 max_tap[3] = {12, 10, 13};
+static const u8 max_tap[3] = {12, 10, 13};
 
 static int increment_dq_dqs(const struct sysinfo *s,
 			struct dll_setting *dq_dqs_setting)
@@ -540,7 +540,7 @@
 	u32 emrs1;
 
 	/* Is shifted by bits 2 later so u8 can be used to reduce size */
-	const static u8 emrs1_lut[8][4][4]={ /* [Config][Leveling Rank][Rank] */
+	static const u8 emrs1_lut[8][4][4] = { /* [Config][Leveling Rank][Rank] */
 		{  /* Config 0: 2R2R */
 			{0x11, 0x00, 0x91, 0x00},
 			{0x00, 0x11, 0x91, 0x00},