Skip to content

Commit

Permalink
Staging: add me4000 pci data collection driver
Browse files Browse the repository at this point in the history
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: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Greg Kroah-Hartman committed Oct 10, 2008
1 parent cff338a commit c0f0058
Show file tree
Hide file tree
Showing 7 changed files with 7,114 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/staging/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,6 @@ source "drivers/staging/slicoss/Kconfig"

source "drivers/staging/sxg/Kconfig"

source "drivers/staging/me4000/Kconfig"

endif # STAGING
1 change: 1 addition & 0 deletions drivers/staging/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
obj-$(CONFIG_ET131X) += et131x/
obj-$(CONFIG_SLICOSS) += slicoss/
obj-$(CONFIG_SXG) += sxg/
obj-$(CONFIG_ME4000) += me4000/
10 changes: 10 additions & 0 deletions drivers/staging/me4000/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
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 change: 1 addition & 0 deletions drivers/staging/me4000/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
obj-$(CONFIG_ME4000) += me4000.o
13 changes: 13 additions & 0 deletions drivers/staging/me4000/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

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

0 comments on commit c0f0058

Please sign in to comment.