Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/63170 )
Change subject: intel/common/block: rename dmi folder to gpmr as starting gpmr migration ......................................................................
intel/common/block: rename dmi folder to gpmr as starting gpmr migration
As a start of GPMR(General Purpose Memory Range) driver migration, 1. rename dmi folder to gpmr folder 2. rename dmi.c to gpmr.c
TEST=build Signed-off-by: Wonkyu Kim wonkyu.kim@intel.com Change-Id: I4d57f4b8bd06e0cf6c9afa4baf4a7bed64ecb56b Reviewed-on: https://review.coreboot.org/c/coreboot/+/63170 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Eric Lai eric_lai@quanta.corp-partner.google.com Reviewed-by: Subrata Banik subratabanik@google.com Reviewed-by: Michael Niewöhner foss@mniewoehner.de --- D src/soc/intel/common/block/dmi/Makefile.inc R src/soc/intel/common/block/gpmr/Kconfig A src/soc/intel/common/block/gpmr/Makefile.inc R src/soc/intel/common/block/gpmr/gpmr.c 4 files changed, 7 insertions(+), 7 deletions(-)
Approvals: build bot (Jenkins): Verified Michael Niewöhner: Looks good to me, but someone else must approve Subrata Banik: Looks good to me, approved Eric Lai: Looks good to me, approved
diff --git a/src/soc/intel/common/block/dmi/Makefile.inc b/src/soc/intel/common/block/dmi/Makefile.inc deleted file mode 100644 index 7d013c9..0000000 --- a/src/soc/intel/common/block/dmi/Makefile.inc +++ /dev/null @@ -1,7 +0,0 @@ -ifeq ($(CONFIG_SOC_INTEL_COMMON_BLOCK_DMI), y) - -bootblock-y += dmi.c -romstage-y += dmi.c -ramstage-y += dmi.c - -endif diff --git a/src/soc/intel/common/block/dmi/Kconfig b/src/soc/intel/common/block/gpmr/Kconfig similarity index 100% rename from src/soc/intel/common/block/dmi/Kconfig rename to src/soc/intel/common/block/gpmr/Kconfig diff --git a/src/soc/intel/common/block/gpmr/Makefile.inc b/src/soc/intel/common/block/gpmr/Makefile.inc new file mode 100644 index 0000000..0abf61f --- /dev/null +++ b/src/soc/intel/common/block/gpmr/Makefile.inc @@ -0,0 +1,7 @@ +ifeq ($(CONFIG_SOC_INTEL_COMMON_BLOCK_DMI), y) + +bootblock-y += gpmr.c +romstage-y += gpmr.c +ramstage-y += gpmr.c + +endif diff --git a/src/soc/intel/common/block/dmi/dmi.c b/src/soc/intel/common/block/gpmr/gpmr.c similarity index 100% rename from src/soc/intel/common/block/dmi/dmi.c rename to src/soc/intel/common/block/gpmr/gpmr.c