From 6923e8c40d7ac118b578249cf357ff8ac45652f4 Mon Sep 17 00:00:00 2001 From: Lee Leahy Date: Sun, 22 May 2016 09:01:41 -0700 Subject: [PATCH] soc/intel/quark: Rename usb.c to ehci.c Rename usb.c to ehci.c since it contains EHCI specific content. TEST=Build and run on Galileo Gen2 Change-Id: Ifdb7cd937b1dffda1959b76e1c911ffd93f53cb6 Signed-off-by: Lee Leahy Reviewed-on: https://review.coreboot.org/14939 Tested-by: build bot (Jenkins) Reviewed-by: Duncan Laurie --- src/soc/intel/quark/Makefile.inc | 2 +- src/soc/intel/quark/{usb.c => ehci.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/soc/intel/quark/{usb.c => ehci.c} (100%) diff --git a/src/soc/intel/quark/Makefile.inc b/src/soc/intel/quark/Makefile.inc index b63e613f7b..a6d03b1908 100644 --- a/src/soc/intel/quark/Makefile.inc +++ b/src/soc/intel/quark/Makefile.inc @@ -25,6 +25,7 @@ romstage-$(CONFIG_ENABLE_BUILTIN_HSUART1) += uart_common.c ramstage-$(CONFIG_HAVE_ACPI_TABLES) += acpi.c ramstage-y += chip.c +ramstage-y += ehci.c ramstage-y += gpio_i2c.c ramstage-y += memmap.c ramstage-y += northcluster.c @@ -33,7 +34,6 @@ ramstage-y += reg_access.c ramstage-y += tsc_freq.c ramstage-$(CONFIG_ENABLE_BUILTIN_HSUART1) += uart_common.c ramstage-$(CONFIG_ENABLE_BUILTIN_HSUART1) += uart.c -ramstage-y += usb.c CPPFLAGS_common += -I$(src)/soc/intel/quark CPPFLAGS_common += -I$(src)/soc/intel/quark/include diff --git a/src/soc/intel/quark/usb.c b/src/soc/intel/quark/ehci.c similarity index 100% rename from src/soc/intel/quark/usb.c rename to src/soc/intel/quark/ehci.c