mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
4d80d59437
This patch adds a generic UIO platform driver. It eliminates the need for a dedicated kernel module for simple platform devices. Users only need to implement their irq handler in platform code and fill a struct uio_info there. This helps avoiding code duplication as UIO platform drivers often share a lot of common code. Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com> Signed-off-by: Hans J. Koch <hjk@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
5 lines
134 B
Makefile
5 lines
134 B
Makefile
obj-$(CONFIG_UIO) += uio.o
|
|
obj-$(CONFIG_UIO_CIF) += uio_cif.o
|
|
obj-$(CONFIG_UIO_PDRV) += uio_pdrv.o
|
|
obj-$(CONFIG_UIO_SMX) += uio_smx.o
|