Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c0f00588 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

Staging: add me4000 pci data collection driver



Originally written by Guenter Gebhardt <g.gebhardt@meilhaus.de>

TODO:
	- checkpatch.pl cleanups
	- sparse cleanups
	- possible /proc interaction cleanups
	- more info needed for Kconfig entry
	- real device id?
	- module parameter cleanup

Cc: Wolfgang Beiter <w.beiter@aon.at>
Cc: Guenter Gebhardt <g.gebhardt@meilhaus.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent cff338a9
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -29,4 +29,6 @@ source "drivers/staging/slicoss/Kconfig"

source "drivers/staging/sxg/Kconfig"

source "drivers/staging/me4000/Kconfig"

endif # STAGING
+1 −0
Original line number Diff line number Diff line
@@ -3,3 +3,4 @@
obj-$(CONFIG_ET131X)		+= et131x/
obj-$(CONFIG_SLICOSS)		+= slicoss/
obj-$(CONFIG_SXG)		+= sxg/
obj-$(CONFIG_ME4000)		+= me4000/
+10 −0
Original line number Diff line number Diff line
config ME4000
	tristate "Meilhaus ME-4000 support"
	default n
	depends on PCI
	help
	  This driver supports the Meilhaus ME-4000 family of boards
	  that do data collection and multipurpose I/O.

	  To compile this driver as a module, choose M here: the module
	  will be called me4000.
+1 −0
Original line number Diff line number Diff line
obj-$(CONFIG_ME4000)		+= me4000.o
+13 −0
Original line number Diff line number Diff line

TODO:
	- checkpatch.pl cleanups
	- sparse cleanups
	- possible /proc interaction cleanups
	- more info needed for Kconfig entry
	- real device id?
	- module parameter cleanup

Please send patches to Greg Kroah-Hartman <gregkh@suse.de>
and Cc: Wolfgang Beiter <w.beiter@aon.at> and
Guenter Gebhardt <g.gebhardt@meilhaus.de>
Loading