diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-01-12 06:21:42 +0100 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2023-01-17 04:23:49 +0000 |
commit | 24769421cd1df4f58a8addce16ff9c46080ba1ba (patch) | |
tree | f88a0af9a0ee4b367f4891bf34ce3f1a8b25ab0c /src/soc/amd/glinda/fch.c | |
parent | 4d661eebe95b06acae7d99777ed36ba56a560112 (diff) |
treewide: Fix old-style declarations
Replace old style declaration "const static" with "static const".
This to enable "Wold-style-declaration" command option.
Change-Id: I757632befed1854f422daaf4dfea58281b16e2f5
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71841
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/soc/amd/glinda/fch.c')
-rw-r--r-- | src/soc/amd/glinda/fch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/glinda/fch.c b/src/soc/amd/glinda/fch.c index ea196c0af1..af5f0ecf28 100644 --- a/src/soc/amd/glinda/fch.c +++ b/src/soc/amd/glinda/fch.c @@ -25,7 +25,7 @@ * amd_pci_int_defs.h, just add the pair at the end of this table. * Order is not important. */ -const static struct irq_idx_name irq_association[] = { +static const struct irq_idx_name irq_association[] = { { PIRQ_A, "INTA#" }, { PIRQ_B, "INTB#" }, { PIRQ_C, "INTC#" }, |