mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 12:42:02 +00:00
2c089f08e0
The driver builds a single multiplexer controller using a number of gpio pins. For N pins, there will be 2^N possible multiplexer states. The GPIO pins can be connected (by the hardware) to several multiplexers, which in that case will be operated in parallel. Reviewed-by: Jonathan Cameron <jic23@kernel.org> Signed-off-by: Peter Rosin <peda@axentia.se> Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7 lines
119 B
Makefile
7 lines
119 B
Makefile
#
|
|
# Makefile for multiplexer devices.
|
|
#
|
|
|
|
obj-$(CONFIG_MULTIPLEXER) += mux-core.o
|
|
obj-$(CONFIG_MUX_GPIO) += mux-gpio.o
|