Message ID | 1448592690-14911-6-git-send-email-sjg@chromium.org |
---|---|
State | Accepted |
Headers | show |
On 26 November 2015 at 18:51, Simon Glass <sjg@chromium.org> wrote: > This file should not be used with driver model as it has lots of legacy/ > compatibility functions. Rename it to make this clear. > > Signed-off-by: Simon Glass <sjg@chromium.org> > Reviewed-by: Bin Meng <bmeng.cn@gmail.com> > --- > > Changes in v3: None > Changes in v2: None > > drivers/pci/Makefile | 2 +- > drivers/pci/{pci_auto.c => pci_auto_old.c} | 0 > 2 files changed, 1 insertion(+), 1 deletion(-) > rename drivers/pci/{pci_auto.c => pci_auto_old.c} (100%) Applied to u-boot-dm.
diff --git a/drivers/pci/Makefile b/drivers/pci/Makefile index bcf8127..dee844f 100644 --- a/drivers/pci/Makefile +++ b/drivers/pci/Makefile @@ -13,7 +13,7 @@ obj-$(CONFIG_X86) += pci_x86.o else obj-$(CONFIG_PCI) += pci.o endif -obj-$(CONFIG_PCI) += pci_common.o pci_auto.o pci_rom.o +obj-$(CONFIG_PCI) += pci_common.o pci_auto_old.o pci_rom.o obj-$(CONFIG_FSL_PCI_INIT) += fsl_pci_init.o obj-$(CONFIG_PCI_INDIRECT_BRIDGE) += pci_indirect.o diff --git a/drivers/pci/pci_auto.c b/drivers/pci/pci_auto_old.c similarity index 100% rename from drivers/pci/pci_auto.c rename to drivers/pci/pci_auto_old.c