1bafeb378e
UIO driver for the Adrienne Electronics Corporation PCI time code device. This device differs from other UIO devices since it uses I/O ports instead of memory mapped I/O. In order to make it possible for UIO to work with this device a utility, uioport, can be used to read and write the ports. uioport is designed to be a setuid program and checks the permissions of the /dev/uio* node and if the user has write permissions it will use iopl and out*/in* to access the device. [1] git clone git://ifup.org/philips/uioport.git Signed-off-by: Brandon Philips <brandon@ifup.org> Signed-off-by: Hans J. Koch <hjk@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
7 lines
263 B
Makefile
7 lines
263 B
Makefile
obj-$(CONFIG_UIO) += uio.o
|
|
obj-$(CONFIG_UIO_CIF) += uio_cif.o
|
|
obj-$(CONFIG_UIO_PDRV) += uio_pdrv.o
|
|
obj-$(CONFIG_UIO_PDRV_GENIRQ) += uio_pdrv_genirq.o
|
|
obj-$(CONFIG_UIO_SMX) += uio_smx.o
|
|
obj-$(CONFIG_UIO_AEC) += uio_aec.o
|
|
obj-$(CONFIG_UIO_SERCOS3) += uio_sercos3.o
|