-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds the Comedi core to the staging tree. This is a data acquision infrastructure for Linux, providing a common interface for these types of drivers. Taken directly from the comedi git tree, with only minor tweaks by Greg to get it to build properly within the kernel tree. From: David Schleef <ds@schleef.org> Cc: Ian Abbott <abbotti@mev.co.uk> Cc: Shawn Bohrer <shawn.bohrer@gmail.com> Signed-off-by: Frank Mori Hess <fmhess@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
- Loading branch information
David Schleef
authored and
Greg Kroah-Hartman
committed
Jan 6, 2009
1 parent
535deaa
commit ed9eccb
Showing
21 changed files
with
6,460 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
config COMEDI | ||
tristate "Data Acquision support (comedi)" | ||
default N | ||
---help--- | ||
Enable support a wide range of data acquision devices | ||
for Linux. | ||
|
||
config COMEDI_RT | ||
tristate "Comedi Real-time support" | ||
depends on COMEDI && RT | ||
default N | ||
---help--- | ||
Enable Real time support for the Comedi core. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
obj-$(CONFIG_COMEDI) += comedi.o | ||
obj-$(CONFIG_COMEDI_RT) += comedi_rt.o | ||
|
||
comedi-objs := \ | ||
comedi_fops.o \ | ||
proc.o \ | ||
range.o \ | ||
drivers.o \ | ||
comedi_compat32.o \ | ||
comedi_ksyms.o \ | ||
|
||
comedi_rt-objs := \ | ||
rt_pend_tq.o \ | ||
rt.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
TODO: | ||
- checkpatch.pl cleanups | ||
- Lindent | ||
- remove all wrappers | ||
- remove typedefs | ||
- audit userspace interface | ||
- reserve major number | ||
- cleanup the individual comedi drivers as well | ||
|
||
Please send patches to Greg Kroah-Hartman <greg@kroah.com> and | ||
copy: | ||
Ian Abbott <abbotti@mev.co.uk> | ||
Frank Mori Hess <fmhess@users.sourceforge.net> | ||
David Schleef <ds@schleef.org> |
Oops, something went wrong.