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>
This commit is contained in:
Elyes Haouas
2023-01-12 06:21:42 +01:00
parent 4d661eebe9
commit 24769421cd
15 changed files with 20 additions and 20 deletions

View File

@ -25,7 +25,7 @@
/* Signature "MRCD" was used for older header format before CB:67670. */ /* Signature "MRCD" was used for older header format before CB:67670. */
#define MRC_DATA_SIGNATURE (('M'<<0)|('R'<<8)|('C'<<16)|('d'<<24)) #define MRC_DATA_SIGNATURE (('M'<<0)|('R'<<8)|('C'<<16)|('d'<<24))
const static uint32_t mrc_invalid_sig = ~MRC_DATA_SIGNATURE; static const uint32_t mrc_invalid_sig = ~MRC_DATA_SIGNATURE;
struct mrc_metadata { struct mrc_metadata {
uint32_t signature; uint32_t signature;

View File

@ -12,7 +12,7 @@ typedef struct {
const char *name; const char *name;
} sku_info; } sku_info;
const static sku_info skus[] = { static const sku_info skus[] = {
// Drallion 360 // Drallion 360
{ .id = 1, .name = "sku1" }, { .id = 1, .name = "sku1" },
// Drallion // Drallion

View File

@ -56,7 +56,7 @@ const struct region_device *boot_device_ro(void)
return NULL; return NULL;
} }
const static struct fu540_spi_mmap_config spi_mmap_config = { static const struct fu540_spi_mmap_config spi_mmap_config = {
.cmd_en = 1, .cmd_en = 1,
.addr_len = 4, .addr_len = 4,
.pad_cnt = 6, .pad_cnt = 6,

View File

@ -23,7 +23,7 @@
* *
* TODO: Find out which I2C controllers we really need to enable here. * TODO: Find out which I2C controllers we really need to enable here.
*/ */
const static unsigned int aoac_devs[] = { static const unsigned int aoac_devs[] = {
FCH_AOAC_DEV_AMBA, FCH_AOAC_DEV_AMBA,
FCH_AOAC_DEV_I2C0, FCH_AOAC_DEV_I2C0,
FCH_AOAC_DEV_I2C1, FCH_AOAC_DEV_I2C1,

View File

@ -29,7 +29,7 @@
* amd_pci_int_defs.h, just add the pair at the end of this table. * amd_pci_int_defs.h, just add the pair at the end of this table.
* Order is not important. * Order is not important.
*/ */
const static struct irq_idx_name irq_association[] = { static const struct irq_idx_name irq_association[] = {
{ PIRQ_A, "INTA#" }, { PIRQ_A, "INTA#" },
{ PIRQ_B, "INTB#" }, { PIRQ_B, "INTB#" },
{ PIRQ_C, "INTC#" }, { PIRQ_C, "INTC#" },

View File

@ -28,7 +28,7 @@
* *
* TODO: Find out which I2C controllers we really need to enable here. * TODO: Find out which I2C controllers we really need to enable here.
*/ */
const static unsigned int aoac_devs[] = { static const unsigned int aoac_devs[] = {
FCH_AOAC_DEV_AMBA, FCH_AOAC_DEV_AMBA,
FCH_AOAC_DEV_I2C0, FCH_AOAC_DEV_I2C0,
FCH_AOAC_DEV_I2C1, FCH_AOAC_DEV_I2C1,

View File

@ -25,7 +25,7 @@
* amd_pci_int_defs.h, just add the pair at the end of this table. * amd_pci_int_defs.h, just add the pair at the end of this table.
* Order is not important. * Order is not important.
*/ */
const static struct irq_idx_name irq_association[] = { static const struct irq_idx_name irq_association[] = {
{ PIRQ_A, "INTA#" }, { PIRQ_A, "INTA#" },
{ PIRQ_B, "INTB#" }, { PIRQ_B, "INTB#" },
{ PIRQ_C, "INTC#" }, { PIRQ_C, "INTC#" },

View File

@ -26,7 +26,7 @@
* *
* TODO: Find out which I2C controllers we really need to enable here. * TODO: Find out which I2C controllers we really need to enable here.
*/ */
const static unsigned int aoac_devs[] = { static const unsigned int aoac_devs[] = {
FCH_AOAC_DEV_AMBA, FCH_AOAC_DEV_AMBA,
FCH_AOAC_DEV_I2C0, FCH_AOAC_DEV_I2C0,
FCH_AOAC_DEV_I2C1, FCH_AOAC_DEV_I2C1,

View File

@ -24,7 +24,7 @@
* amd_pci_int_defs.h, just add the pair at the end of this table. * amd_pci_int_defs.h, just add the pair at the end of this table.
* Order is not important. * Order is not important.
*/ */
const static struct irq_idx_name irq_association[] = { static const struct irq_idx_name irq_association[] = {
{ PIRQ_A, "INTA#" }, { PIRQ_A, "INTA#" },
{ PIRQ_B, "INTB#" }, { PIRQ_B, "INTB#" },
{ PIRQ_C, "INTC#" }, { PIRQ_C, "INTC#" },

View File

@ -26,7 +26,7 @@
* *
* TODO: Find out which I2C controllers we really need to enable here. * TODO: Find out which I2C controllers we really need to enable here.
*/ */
const static unsigned int aoac_devs[] = { static const unsigned int aoac_devs[] = {
FCH_AOAC_DEV_AMBA, FCH_AOAC_DEV_AMBA,
FCH_AOAC_DEV_I2C0, FCH_AOAC_DEV_I2C0,
FCH_AOAC_DEV_I2C1, FCH_AOAC_DEV_I2C1,

View File

@ -24,7 +24,7 @@
* amd_pci_int_defs.h, just add the pair at the end of this table. * amd_pci_int_defs.h, just add the pair at the end of this table.
* Order is not important. * Order is not important.
*/ */
const static struct irq_idx_name irq_association[] = { static const struct irq_idx_name irq_association[] = {
{ PIRQ_A, "INTA#" }, { PIRQ_A, "INTA#" },
{ PIRQ_B, "INTB#" }, { PIRQ_B, "INTB#" },
{ PIRQ_C, "INTC#" }, { PIRQ_C, "INTC#" },

View File

@ -23,7 +23,7 @@
* waiting for each device to become available, a single delay will be * waiting for each device to become available, a single delay will be
* executed. The console UART is handled separately from this table. * executed. The console UART is handled separately from this table.
*/ */
const static unsigned int aoac_devs[] = { static const unsigned int aoac_devs[] = {
FCH_AOAC_DEV_AMBA, FCH_AOAC_DEV_AMBA,
FCH_AOAC_DEV_I2C2, FCH_AOAC_DEV_I2C2,
FCH_AOAC_DEV_I2C3, FCH_AOAC_DEV_I2C3,

View File

@ -31,7 +31,7 @@
* amd_pci_int_defs.h, just add the pair at the end of this table. * amd_pci_int_defs.h, just add the pair at the end of this table.
* Order is not important. * Order is not important.
*/ */
const static struct irq_idx_name irq_association[] = { static const struct irq_idx_name irq_association[] = {
{ PIRQ_A, "INTA#" }, { PIRQ_A, "INTA#" },
{ PIRQ_B, "INTB#" }, { PIRQ_B, "INTB#" },
{ PIRQ_C, "INTC#" }, { PIRQ_C, "INTC#" },

View File

@ -92,7 +92,7 @@ static int sdmmc_cbfs_open(void)
return 0; return 0;
} }
const static struct mem_region_device alternate_rdev = static const struct mem_region_device alternate_rdev =
MEM_REGION_DEV_RO_INIT(_cbfs_cache, REGION_SIZE(cbfs_cache)); MEM_REGION_DEV_RO_INIT(_cbfs_cache, REGION_SIZE(cbfs_cache));
const struct region_device *boot_device_ro(void) const struct region_device *boot_device_ro(void)

View File

@ -58,16 +58,16 @@ RDATA_GROUP (G1_PEICC)
#define FILECODE LIB_AMDLIB_FILECODE #define FILECODE LIB_AMDLIB_FILECODE
BOOLEAN
STATIC STATIC
BOOLEAN
GetPciMmioAddress ( GetPciMmioAddress (
OUT UINT64 *MmioAddress, OUT UINT64 *MmioAddress,
OUT UINT32 *MmioSize, OUT UINT32 *MmioSize,
IN AMD_CONFIG_PARAMS *StdHeader IN AMD_CONFIG_PARAMS *StdHeader
); );
VOID
STATIC STATIC
VOID
LibAmdGetDataFromPtr ( LibAmdGetDataFromPtr (
IN ACCESS_WIDTH AccessWidth, IN ACCESS_WIDTH AccessWidth,
IN CONST VOID *Data, IN CONST VOID *Data,
@ -150,8 +150,8 @@ WriteIo32 (
__outdword (Address, Data); __outdword (Address, Data);
} }
AMDLIB_OPTIMIZE
STATIC STATIC
AMDLIB_OPTIMIZE
UINT64 SetFsBase ( UINT64 SetFsBase (
UINT64 address UINT64 address
) )
@ -163,8 +163,8 @@ UINT64 SetFsBase (
return hwcr; return hwcr;
} }
AMDLIB_OPTIMIZE
STATIC STATIC
AMDLIB_OPTIMIZE
VOID VOID
RestoreHwcr ( RestoreHwcr (
UINT64 UINT64
@ -961,8 +961,8 @@ LibAmdPciPoll (
* *
* @retval TRUE MmioAddress/MmioSize are valid * @retval TRUE MmioAddress/MmioSize are valid
*/ */
BOOLEAN
STATIC STATIC
BOOLEAN
GetPciMmioAddress ( GetPciMmioAddress (
OUT UINT64 *MmioAddress, OUT UINT64 *MmioAddress,
OUT UINT32 *MmioSize, OUT UINT32 *MmioSize,
@ -1300,8 +1300,8 @@ LibAmdGetPackageType (
* @param[out] TempDataMask typecast data * @param[out] TempDataMask typecast data
*/ */
VOID
STATIC STATIC
VOID
LibAmdGetDataFromPtr ( LibAmdGetDataFromPtr (
IN ACCESS_WIDTH AccessWidth, IN ACCESS_WIDTH AccessWidth,
IN CONST VOID *Data, IN CONST VOID *Data,