forked from Minki/linux
7517de3486
- Rewrite Alchemy PCI support as a platform driver. - Fixup boards which have PCI. Run-tested on DB1500 and DB1550. Signed-off-by: Manuel Lauss <manuel.lauss@googlemail.com> To: Linux-MIPS <linux-mips@linux-mips.org> Patchwork: https://patchwork.linux-mips.org/patch/2706/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org> delete mode 100644 arch/mips/alchemy/common/pci.c delete mode 100644 arch/mips/pci/fixup-au1000.c delete mode 100644 arch/mips/pci/ops-au1000.c create mode 100644 arch/mips/pci/pci-alchemy.c
17 lines
411 B
Makefile
17 lines
411 B
Makefile
#
|
|
# Copyright 2000, 2008 MontaVista Software Inc.
|
|
# Author: MontaVista Software, Inc. <source@mvista.com>
|
|
#
|
|
# Makefile for the Alchemy Au1xx0 CPUs, generic files.
|
|
#
|
|
|
|
obj-y += prom.o time.o clocks.o platform.o power.o setup.o \
|
|
sleeper.o dma.o dbdma.o
|
|
|
|
obj-$(CONFIG_ALCHEMY_GPIOINT_AU1000) += irq.o
|
|
|
|
# optional gpiolib support
|
|
ifeq ($(CONFIG_ALCHEMY_GPIO_INDIRECT),)
|
|
obj-$(CONFIG_GPIOLIB) += gpiolib.o
|
|
endif
|