From bfb11bec3b3fec638adf864a9b9b2cff6671fed8 Mon Sep 17 00:00:00 2001 From: Nicholas Sudsgaard Date: Tue, 30 Jan 2024 09:53:46 +0900 Subject: include/device/device.h: Remove CHIP_NAME() macro Macros can be confusing on their own; hiding commas make things worse. This can sometimes be downright misleading. A "good" example would be the code in soc/intel/xeon_sp/spr/chip.c: CHIP_NAME("Intel SapphireRapids-SP").enable_dev = chip_enable_dev, This appears as CHIP_NAME() being some struct when in fact these are defining 2 separate members of the same struct. It was decided to remove this macro altogether, as it does not do anything special and incurs a maintenance burden. Change-Id: Iaed6dfb144bddcf5c43634b0c955c19afce388f0 Signed-off-by: Nicholas Sudsgaard Reviewed-on: https://review.coreboot.org/c/coreboot/+/80239 Reviewed-by: Yidi Lin Reviewed-by: Felix Singer Reviewed-by: Jakub Czapiga Tested-by: build bot (Jenkins) Reviewed-by: Matt DeVillier --- src/soc/nvidia/tegra124/soc.c | 2 +- src/soc/nvidia/tegra210/soc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/soc/nvidia') diff --git a/src/soc/nvidia/tegra124/soc.c b/src/soc/nvidia/tegra124/soc.c index 64fb8681ce..1de8ab30b3 100644 --- a/src/soc/nvidia/tegra124/soc.c +++ b/src/soc/nvidia/tegra124/soc.c @@ -47,6 +47,6 @@ static void enable_tegra124_dev(struct device *dev) } struct chip_operations soc_nvidia_tegra124_ops = { - CHIP_NAME("SOC Nvidia Tegra124") + .name = "SOC Nvidia Tegra124", .enable_dev = enable_tegra124_dev, }; diff --git a/src/soc/nvidia/tegra210/soc.c b/src/soc/nvidia/tegra210/soc.c index b037bdfcb3..e207da6020 100644 --- a/src/soc/nvidia/tegra210/soc.c +++ b/src/soc/nvidia/tegra210/soc.c @@ -80,7 +80,7 @@ static void tegra210_init(void *chip_info) } struct chip_operations soc_nvidia_tegra210_ops = { - CHIP_NAME("SOC Nvidia Tegra210") + .name = "SOC Nvidia Tegra210", .init = tegra210_init, .enable_dev = enable_tegra210_dev, }; -- cgit v1.2.3