mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 08:16:51 +07:00
6518bb69f4
The GE GPIO driver provides basic support (set direction, read/write state) for the GPIO provided on some GE single board computers. This patch moves the driver from the 86xx specific platform directrory to the GPIO subsystem so that it can be used on non-86xx boards. Signed-off-by: Martyn Welch <martyn.welch@ge.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14 lines
391 B
Makefile
14 lines
391 B
Makefile
#
|
|
# Makefile for the PowerPC 86xx linux kernel.
|
|
#
|
|
|
|
obj-y := pic.o
|
|
obj-$(CONFIG_SMP) += mpc86xx_smp.o
|
|
obj-$(CONFIG_MPC8641_HPCN) += mpc86xx_hpcn.o
|
|
obj-$(CONFIG_SBC8641D) += sbc8641d.o
|
|
obj-$(CONFIG_MPC8610_HPCD) += mpc8610_hpcd.o
|
|
obj-$(CONFIG_GE_FPGA) += gef_pic.o
|
|
obj-$(CONFIG_GEF_SBC610) += gef_sbc610.o
|
|
obj-$(CONFIG_GEF_SBC310) += gef_sbc310.o
|
|
obj-$(CONFIG_GEF_PPC9A) += gef_ppc9a.o
|