diff options
Diffstat (limited to 'src/soc/amd')
-rw-r--r-- | src/soc/amd/cezanne/chip.c | 2 | ||||
-rw-r--r-- | src/soc/amd/genoa_poc/chip.c | 2 | ||||
-rw-r--r-- | src/soc/amd/glinda/chip.c | 2 | ||||
-rw-r--r-- | src/soc/amd/mendocino/chip.c | 2 | ||||
-rw-r--r-- | src/soc/amd/phoenix/chip.c | 2 | ||||
-rw-r--r-- | src/soc/amd/picasso/chip.c | 2 | ||||
-rw-r--r-- | src/soc/amd/stoneyridge/chip.c | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/src/soc/amd/cezanne/chip.c b/src/soc/amd/cezanne/chip.c index 4be0a829e4..ffbd94a404 100644 --- a/src/soc/amd/cezanne/chip.c +++ b/src/soc/amd/cezanne/chip.c @@ -50,7 +50,7 @@ static void soc_final(void *chip_info) } struct chip_operations soc_amd_cezanne_ops = { - CHIP_NAME("AMD Cezanne SoC") + .name = "AMD Cezanne SoC", .init = soc_init, .final = soc_final }; diff --git a/src/soc/amd/genoa_poc/chip.c b/src/soc/amd/genoa_poc/chip.c index 83d2bc9fa6..d397800ec1 100644 --- a/src/soc/amd/genoa_poc/chip.c +++ b/src/soc/amd/genoa_poc/chip.c @@ -21,7 +21,7 @@ static void soc_final(void *chip_info) } struct chip_operations soc_amd_genoa_poc_ops = { - CHIP_NAME("AMD Genoa SoC Proof of Concept") + .name = "AMD Genoa SoC Proof of Concept", .init = soc_init, .final = soc_final, }; diff --git a/src/soc/amd/glinda/chip.c b/src/soc/amd/glinda/chip.c index 0f49f6a01c..13933c7df6 100644 --- a/src/soc/amd/glinda/chip.c +++ b/src/soc/amd/glinda/chip.c @@ -52,7 +52,7 @@ static void soc_final(void *chip_info) } struct chip_operations soc_amd_glinda_ops = { - CHIP_NAME("AMD Glinda SoC") + .name = "AMD Glinda SoC", .init = soc_init, .final = soc_final }; diff --git a/src/soc/amd/mendocino/chip.c b/src/soc/amd/mendocino/chip.c index f724e20409..0bb963747b 100644 --- a/src/soc/amd/mendocino/chip.c +++ b/src/soc/amd/mendocino/chip.c @@ -50,7 +50,7 @@ static void soc_final(void *chip_info) } struct chip_operations soc_amd_mendocino_ops = { - CHIP_NAME("AMD Mendocino SoC") + .name = "AMD Mendocino SoC", .init = soc_init, .final = soc_final }; diff --git a/src/soc/amd/phoenix/chip.c b/src/soc/amd/phoenix/chip.c index 173b2208df..72652bac60 100644 --- a/src/soc/amd/phoenix/chip.c +++ b/src/soc/amd/phoenix/chip.c @@ -52,7 +52,7 @@ static void soc_final(void *chip_info) } struct chip_operations soc_amd_phoenix_ops = { - CHIP_NAME("AMD Phoenix SoC") + .name = "AMD Phoenix SoC", .init = soc_init, .final = soc_final }; diff --git a/src/soc/amd/picasso/chip.c b/src/soc/amd/picasso/chip.c index 4f3058252c..d896a83372 100644 --- a/src/soc/amd/picasso/chip.c +++ b/src/soc/amd/picasso/chip.c @@ -50,7 +50,7 @@ static void soc_final(void *chip_info) } struct chip_operations soc_amd_picasso_ops = { - CHIP_NAME("AMD Picasso SOC") + .name = "AMD Picasso SOC", .init = soc_init, .final = soc_final }; diff --git a/src/soc/amd/stoneyridge/chip.c b/src/soc/amd/stoneyridge/chip.c index 09cede3ddb..05beaff699 100644 --- a/src/soc/amd/stoneyridge/chip.c +++ b/src/soc/amd/stoneyridge/chip.c @@ -100,7 +100,7 @@ static void soc_final(void *chip_info) } struct chip_operations soc_amd_stoneyridge_ops = { - CHIP_NAME("AMD StoneyRidge SOC") + .name = "AMD StoneyRidge SOC", .init = soc_init, .final = soc_final }; |