fix: remove old-style declarations

TF-A wants to eventually enable -Wold-style-definition globally. Convert
the rare few instances where this is still the case.

Signed-off-by: Boyan Karatotev <boyan.karatotev@arm.com>
Change-Id: I9c450fc875cf097e6de2ed577ea3b085821c9f5e
This commit is contained in:
Boyan Karatotev 2022-11-22 14:31:41 +00:00
parent e138400d1c
commit f4b8470fee
10 changed files with 13 additions and 13 deletions

View file

@ -269,7 +269,7 @@ static int cal_odt(const unsigned int clk,
unsigned int i;
const struct dynamic_odt *pdodt = NULL;
const static struct dynamic_odt *table[2][5] = {
static const struct dynamic_odt *table[2][5] = {
{single_S, single_D, NULL, NULL},
{dual_SS, dual_DD, NULL, NULL},
};