For GPIOLIB=y decide at runtime which gpiochips to register; in the GPIOLIB=n case, the gpio headers need to be reshuffled a bit to make multiple implementations coexist peacefully. Signed-off-by: Manuel Lauss <manuel.lauss@googlemail.com> To: Linux-MIPS <linux-mips@linux-mips.org> Patchwork: https://patchwork.linux-mips.org/patch/2679/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
19 lines
440 B
Makefile
19 lines
440 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
|
|
|
|
obj-$(CONFIG_PCI) += pci.o
|