Skip to content

Commit

Permalink
staging: comedi: Allow comedi on ARM
Browse files Browse the repository at this point in the history
Bernd Porr reports success getting comedi to work on ARM.  He writes:

"""
comedi works nicely on the Raspberry PI. I've compiled the rpi kernel
with comedi enabled and it works with the USBDUX-sigma (need to test the
other boards). With comedirecord running I can plot one channel at 1kHz
without buffer overflow (resulting to 70% load).

So, I guess we just need to add "ARM" to Kconfig in the comedi subdir?

         depends on BROKEN || FRV || M32R || MN10300 || SUPERH || TILE || X86 || ARM

I'm running just now 3.2.27 but also the development kernel compiles
with ARM enabled (haven't tested yet).

/Bernd
"""

Enable the COMEDI config option to be selected for ARM.

Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Cc: Bernd Porr <mail@berndporr.me.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Ian Abbott authored and Greg Kroah-Hartman committed Jan 21, 2013
1 parent 82ebecc commit 3eb4fd1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/staging/comedi/Kconfig
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
config COMEDI
tristate "Data acquisition support (comedi)"
depends on m
depends on BROKEN || FRV || M32R || MN10300 || SUPERH || TILE || X86
depends on BROKEN || FRV || M32R || MN10300 || SUPERH || TILE || \
X86 || ARM
---help---
Enable support a wide range of data acquisition devices
for Linux.
Expand Down

0 comments on commit 3eb4fd1

Please sign in to comment.