forked from Minki/linux
c12e69c6aa
Here's the huge drivers/staging/ update for 3.15-rc1. Loads of cleanup fixes, a few drivers removed, and some new ones added. All have been in linux-next for a while. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (GNU/Linux) iEYEABECAAYFAlM7BqAACgkQMUfUDdst+ykHUwCguJDlvM7/FGb3QQslAuKN5Np4 n2YAoJ3C355mo8Wxr/bJah3Jms4f+a7Q =4XGY -----END PGP SIGNATURE----- Merge tag 'staging-3.15-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging Pull staging driver updates from Greg KH: "Here's the huge drivers/staging/ update for 3.15-rc1. Loads of cleanup fixes, a few drivers removed, and some new ones added. All have been in linux-next for a while" * tag 'staging-3.15-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging: (1375 commits) staging: xillybus: XILLYBUS_PCIE depends on PCI_MSI staging: xillybus: Added "select CRC32" for XILLYBUS in Kconfig staging: comedi: poc: remove obsolete driver staging: unisys: replace kzalloc/kfree with UISMALLOC/UISFREE staging: octeon-usb: prevent memory corruption staging: usbip: fix line over 80 characters staging: usbip: fix quoted string split across lines Staging: unisys: Remove RETINT macro Staging: unisys: Remove FAIL macro Staging: unisys: Remove RETVOID macro Staging: unisys: Remove RETPTR macro Staging: unisys: Remove RETBOOL macro Staging: unisys: Remove FAIL_WPOSTCODE_1 macro Staging: unisys: Cleanup macros to get rid of goto statements Staging: unisys: include: Remove unused macros from timskmod.h staging: dgap: fix the rest of the checkpatch warnings in dgap.c Staging: bcm: Remove unnecessary parentheses staging: wlags49_h2: Delete unnecessary braces staging: wlags49_h2: Do not use assignment in if condition staging: wlags49_h2: Enclose macro in a do-while loop ...
29 lines
1005 B
Makefile
29 lines
1005 B
Makefile
#
|
|
# Makefile for IIO ADC drivers
|
|
#
|
|
|
|
# When adding new entries keep the list in alphabetical order
|
|
obj-$(CONFIG_AD_SIGMA_DELTA) += ad_sigma_delta.o
|
|
obj-$(CONFIG_AD7266) += ad7266.o
|
|
obj-$(CONFIG_AD7298) += ad7298.o
|
|
obj-$(CONFIG_AD7923) += ad7923.o
|
|
obj-$(CONFIG_AD7476) += ad7476.o
|
|
obj-$(CONFIG_AD7791) += ad7791.o
|
|
obj-$(CONFIG_AD7793) += ad7793.o
|
|
obj-$(CONFIG_AD7887) += ad7887.o
|
|
obj-$(CONFIG_AT91_ADC) += at91_adc.o
|
|
obj-$(CONFIG_EXYNOS_ADC) += exynos_adc.o
|
|
obj-$(CONFIG_LP8788_ADC) += lp8788_adc.o
|
|
obj-$(CONFIG_MAX1363) += max1363.o
|
|
obj-$(CONFIG_MCP320X) += mcp320x.o
|
|
obj-$(CONFIG_MCP3422) += mcp3422.o
|
|
obj-$(CONFIG_MEN_Z188_ADC) += men_z188_adc.o
|
|
obj-$(CONFIG_NAU7802) += nau7802.o
|
|
obj-$(CONFIG_TI_ADC081C) += ti-adc081c.o
|
|
obj-$(CONFIG_TI_AM335X_ADC) += ti_am335x_adc.o
|
|
obj-$(CONFIG_TWL6030_GPADC) += twl6030-gpadc.o
|
|
obj-$(CONFIG_VF610_ADC) += vf610_adc.o
|
|
obj-$(CONFIG_VIPERBOARD_ADC) += viperboard_adc.o
|
|
xilinx-xadc-y := xilinx-xadc-core.o xilinx-xadc-events.o
|
|
obj-$(CONFIG_XILINX_XADC) += xilinx-xadc.o
|