From 81ec9c0500e4b53440579ffad0011a6b077b6bdb Mon Sep 17 00:00:00 2001 From: Nico Huber Date: Tue, 15 May 2018 14:09:37 +0200 Subject: device: Rename device_simple.c --> device_const.c In early stages (pre ramstage), we have two notions of devices. To access the hardware, "simple device" handles are used. These are plain numbers. To access the static information of the device tree, we use `struct device` pointers. This is referred to as DEVTREE_EARLY in the code. This file is about the latter and its name reflects that the tree remains unmodified. Change-Id: I31aeb118615e86026f7111f83a7866d4e7426170 Signed-off-by: Nico Huber Reviewed-on: https://review.coreboot.org/26293 Tested-by: build bot (Jenkins) Reviewed-by: Nico Huber Reviewed-by: Aaron Durbin --- src/device/Makefile.inc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/device/Makefile.inc') diff --git a/src/device/Makefile.inc b/src/device/Makefile.inc index e86aa2cdfd..05dbe742fb 100644 --- a/src/device/Makefile.inc +++ b/src/device/Makefile.inc @@ -21,12 +21,12 @@ ifeq ($(CONFIG_AZALIA_PLUGIN_SUPPORT),y) ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/hda_verb.c endif -bootblock-y += device_simple.c -postcar-y += device_simple.c -smm-y += device_simple.c -verstage-y += device_simple.c -romstage-y += device_simple.c -ramstage-y += device_simple.c +bootblock-y += device_const.c +postcar-y += device_const.c +smm-y += device_const.c +verstage-y += device_const.c +romstage-y += device_const.c +ramstage-y += device_const.c romstage-$(CONFIG_PCI) += pci_early.c subdirs-y += oprom dram -- cgit v1.2.3