forked from Minki/linux
7b2fa57020
GPIO drivers are getting moved to drivers/gpio for cleanup and consolidation. This patch moves the mxs driver. Follow up patches will clean it up and make it a fine upstanding example of a gpio driver. v2: Removed header file entirely and put struct definition directly into driver. The struct isn't used anywhere else in the kernel. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Tested-by: Shawn Guo <shawn.guo@linaro.org> Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
17 lines
491 B
Makefile
17 lines
491 B
Makefile
# Common support
|
|
obj-y := clock.o devices.o icoll.o iomux.o system.o timer.o
|
|
|
|
obj-$(CONFIG_MXS_OCOTP) += ocotp.o
|
|
obj-$(CONFIG_PM) += pm.o
|
|
|
|
obj-$(CONFIG_SOC_IMX23) += clock-mx23.o mm-mx23.o
|
|
obj-$(CONFIG_SOC_IMX28) += clock-mx28.o mm-mx28.o
|
|
|
|
obj-$(CONFIG_MACH_STMP378X_DEVB) += mach-stmp378x_devb.o
|
|
obj-$(CONFIG_MACH_MX23EVK) += mach-mx23evk.o
|
|
obj-$(CONFIG_MACH_MX28EVK) += mach-mx28evk.o
|
|
obj-$(CONFIG_MODULE_TX28) += module-tx28.o
|
|
obj-$(CONFIG_MACH_TX28) += mach-tx28.o
|
|
|
|
obj-y += devices/
|