Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 70f8e9cc authored by Linus Walleij's avatar Linus Walleij
Browse files

ARM: integrator: Delete the V3 PCI driver



Before adding a proper PCI driver in drivers/pci/host, clean out
the cruft by deleting the old driver from the machine.

Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 2bd6bf03
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -7,6 +7,4 @@
obj-y					:= core.o lm.o
obj-$(CONFIG_ARCH_INTEGRATOR_AP)	+= integrator_ap.o
obj-$(CONFIG_ARCH_INTEGRATOR_CP)	+= integrator_cp.o

obj-$(CONFIG_PCI)			+= pci_v3.o
obj-$(CONFIG_INTEGRATOR_IMPD1)		+= impd1.o
+0 −2
Original line number Diff line number Diff line
@@ -36,7 +36,6 @@
#include "hardware.h"
#include "cm.h"
#include "common.h"
#include "pci_v3.h"
#include "lm.h"

/* Regmap to the AP system controller */
@@ -74,7 +73,6 @@ static struct map_desc ap_io_desc[] __initdata __maybe_unused = {
static void __init ap_map_io(void)
{
	iotable_init(ap_io_desc, ARRAY_SIZE(ap_io_desc));
	pci_v3_early_init();
}

#ifdef CONFIG_PM

arch/arm/mach-integrator/pci_v3.c

deleted100644 → 0
+0 −900

File deleted.

Preview size limit exceeded, changes collapsed.

arch/arm/mach-integrator/pci_v3.h

deleted100644 → 0
+0 −9
Original line number Diff line number Diff line
/* Simple oneliner include to the PCIv3 early init */
#ifdef CONFIG_PCI
extern int pci_v3_early_init(void);
#else
static inline int pci_v3_early_init(void)
{
	return 0;
}
#endif