mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 17:23:55 +08:00
b16b2a262c
This implements some Kconfig knobs for ensuring that the PFC gpio chip can be disabled or built as a module in the cases where it's optional, or forcibly enabled in cases where it's not. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
12 lines
263 B
Makefile
12 lines
263 B
Makefile
#
|
|
# Makefile for the SuperH specific drivers.
|
|
#
|
|
obj-y := intc/
|
|
|
|
obj-$(CONFIG_HAVE_CLK) += clk/
|
|
obj-$(CONFIG_MAPLE) += maple/
|
|
obj-$(CONFIG_SUPERHYWAY) += superhyway/
|
|
obj-$(CONFIG_SH_PFC) += pfc.o
|
|
obj-$(CONFIG_GPIO_SH_PFC) += pfc-gpio.o
|
|
obj-y += pm_runtime.o
|