northbridge/intel: Rename ram_calc.c to memmap.c

Use a name consistent with the more recent soc/intel.

Change-Id: Ie69583f28f384eb49517203e1c3867f27e6272de
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/34699
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
Kyösti Mälkki
2019-08-03 21:28:40 +03:00
parent e119d86ca8
commit fe481eb3e5
16 changed files with 24 additions and 24 deletions

View File

@@ -19,16 +19,16 @@ ifeq ($(CONFIG_NORTHBRIDGE_INTEL_PINEVIEW),y)
bootblock-y += ../../../cpu/x86/early_reset.S
bootblock-y += bootblock.c
ramstage-y += ram_calc.c
ramstage-y += memmap.c
ramstage-y += northbridge.c
ramstage-y += gma.c
ramstage-y += acpi.c
romstage-y += romstage.c
romstage-y += ram_calc.c
romstage-y += memmap.c
romstage-y += raminit.c
romstage-y += early_init.c
postcar-y += ram_calc.c
postcar-y += memmap.c
endif