comedi.git
16 years agoPatch from Anders Blomdell: "When uppgrading to 2.6.26.3, I found out that
Ian Abbott [Wed, 1 Oct 2008 16:20:49 +0000 (16:20 +0000)]
Patch from Anders Blomdell: "When uppgrading to 2.6.26.3, I found out that
f->f_op->ioctl is NULL with some (all?) serial drivers. Changing to
f->f_op->unlocked_ioctl worked for everything except FIONREAD, which
occasionally page faulted, hence I use 'settings.c_cc[VMIN] = 0
settings.c_cc[VTIME] = 0;' and use f->f_op->read for polling.

16 years agoPatch from Anders Blomdell: pick first board when bus/slot unspecified.
Ian Abbott [Wed, 1 Oct 2008 16:18:56 +0000 (16:18 +0000)]
Patch from Anders Blomdell: pick first board when bus/slot unspecified.

16 years agoPatch from Anders Blomdell: make detach work.
Ian Abbott [Wed, 1 Oct 2008 16:12:16 +0000 (16:12 +0000)]
Patch from Anders Blomdell: make detach work.

16 years agoPatch from Anders Blomdell: remove result printout for AI INSN_READ.
Ian Abbott [Wed, 1 Oct 2008 16:11:21 +0000 (16:11 +0000)]
Patch from Anders Blomdell: remove result printout for AI INSN_READ.

16 years agoFixed problem with reporting of insn_bits support duw to it not being null
Frank Mori Hess [Tue, 16 Sep 2008 14:46:52 +0000 (14:46 +0000)]
Fixed problem with reporting of insn_bits support duw to it not being null
when it is not supported, but rather points at insn_inval.

16 years agoAdded insn_bits_supported field to subdevice info ioctl, as part
Frank Mori Hess [Tue, 16 Sep 2008 13:59:10 +0000 (13:59 +0000)]
Added insn_bits_supported field to subdevice info ioctl, as part
of a fix for:

BUG in do_test_for_insn_bits()
: Device or resource busy

when a program opens a device file
and one of the subdevices is busy when it
is opened.

16 years agoCorrected option indices in documentation.
Ian Abbott [Fri, 5 Sep 2008 13:52:34 +0000 (13:52 +0000)]
Corrected option indices in documentation.

16 years agoTrying to sort out when we need to write to the second tio chip's
Frank Mori Hess [Thu, 4 Sep 2008 23:27:18 +0000 (23:27 +0000)]
Trying to sort out when we need to write to the second tio chip's
ioconfig registers.

16 years agoTidied up the initializer for ni_boards[].
Ian Abbott [Mon, 1 Sep 2008 10:03:58 +0000 (10:03 +0000)]
Tidied up the initializer for ni_boards[].

16 years agoThe big kernel lock was never held during read() or write() system
Frank Mori Hess [Fri, 15 Aug 2008 20:42:00 +0000 (20:42 +0000)]
The big kernel lock was never held during read() or write() system
calls, only during ioctls.  There should be no reason the device's mutex
needs to be locked during read or write operations.

16 years agodevice_create is not fully functional in linux 2.6.18.
Frank Mori Hess [Fri, 15 Aug 2008 20:35:58 +0000 (20:35 +0000)]
device_create is not fully functional in linux 2.6.18.

16 years ago#ifdef out unused functions 'lock_port()' and 'unlock_port()' to avoid
Ian Abbott [Tue, 5 Aug 2008 15:01:21 +0000 (15:01 +0000)]
#ifdef out unused functions 'lock_port()' and 'unlock_port()' to avoid
compiler warnings.

16 years agoMade firmware data pointer 'const' to avoid compiler warnings for 2.6.27-rc1.
Ian Abbott [Tue, 5 Aug 2008 14:54:56 +0000 (14:54 +0000)]
Made firmware data pointer 'const' to avoid compiler warnings for 2.6.27-rc1.

16 years agoParameters of device_create() changed in 2.6.27-rc1, so call compatibility
Ian Abbott [Tue, 5 Aug 2008 14:43:40 +0000 (14:43 +0000)]
Parameters of device_create() changed in 2.6.27-rc1, so call compatibility
macro COMEDI_DEVICE_CREATE() instead.

16 years agoWe don't need to clear the AO_Update_Timed bit on all unused ao channels
Frank Mori Hess [Wed, 30 Jul 2008 13:13:22 +0000 (13:13 +0000)]
We don't need to clear the AO_Update_Timed bit on all unused ao channels
unless we are configuring the chanlist for a command.

16 years agoSome INSN_READ fixes for AI subdevice: enable conversion on requested
Ian Abbott [Tue, 29 Jul 2008 15:32:41 +0000 (15:32 +0000)]
Some INSN_READ fixes for AI subdevice: enable conversion on requested
channel, munge 2's complement data to offset binary, set maxdata to 0xffff.

Also add the two reference voltage channels to the AI subdevice.

16 years agoTrying to fix bug #265, where ao channels seem to get put in timed update
Frank Mori Hess [Tue, 29 Jul 2008 15:25:40 +0000 (15:25 +0000)]
Trying to fix bug #265, where ao channels seem to get put in timed update
mode and left there by ao commands.

16 years agoAdded an explanatory comment for the device_create() compatibility stuff.
Ian Abbott [Thu, 17 Jul 2008 12:11:58 +0000 (12:11 +0000)]
Added an explanatory comment for the device_create() compatibility stuff.

16 years ago#ifdef out unused functions 'lock_port()' and 'unlock_port()' to avoid
Ian Abbott [Tue, 15 Jul 2008 13:02:47 +0000 (13:02 +0000)]
#ifdef out unused functions 'lock_port()' and 'unlock_port()' to avoid
compiler warnings.

16 years agoNeed to check result of down_interruptible(). Return -EINTR if it fails.
Ian Abbott [Tue, 15 Jul 2008 12:57:40 +0000 (12:57 +0000)]
Need to check result of down_interruptible(). Return -EINTR if it fails.

16 years agoCorrected previous correction for PCMCIA test (silly typo).
Ian Abbott [Tue, 15 Jul 2008 12:42:15 +0000 (12:42 +0000)]
Corrected previous correction for PCMCIA test (silly typo).

16 years ago'struct class_device' removed from 2.6.26 kernel, so use 'device_create()'
Ian Abbott [Tue, 15 Jul 2008 12:24:02 +0000 (12:24 +0000)]
'struct class_device' removed from 2.6.26 kernel, so use 'device_create()'
and 'device_destroy()' instead of 'class_device_create()' and
class_device_destroy()'.

16 years agoFixed poll/select on write subdevice.
Frank Mori Hess [Fri, 27 Jun 2008 18:00:26 +0000 (18:00 +0000)]
Fixed poll/select on write subdevice.

16 years agoFixed number of output samples for m-series boards when using analog
Frank Mori Hess [Sun, 15 Jun 2008 15:45:47 +0000 (15:45 +0000)]
Fixed number of output samples for m-series boards when using analog
output command with stop_src==TRIG_COUNT

16 years agoFixed configure check for linux/mutex.h
Frank Mori Hess [Sat, 24 May 2008 23:15:19 +0000 (23:15 +0000)]
Fixed configure check for linux/mutex.h

16 years agoIgnore data and data_len in comedi_cmd.
Ian Abbott [Wed, 30 Apr 2008 13:46:26 +0000 (13:46 +0000)]
Ignore data and data_len in comedi_cmd.

16 years agoAdded MODULE_DEVICE_TABLE.
Ian Abbott [Mon, 28 Apr 2008 17:24:15 +0000 (17:24 +0000)]
Added MODULE_DEVICE_TABLE.

16 years agoMade some data 'const'.
Ian Abbott [Mon, 28 Apr 2008 16:53:05 +0000 (16:53 +0000)]
Made some data 'const'.

16 years agoUse DEFINE_PCI_DEVICE_TABLE() macro to declare PCI device table.
Ian Abbott [Mon, 28 Apr 2008 15:57:58 +0000 (15:57 +0000)]
Use DEFINE_PCI_DEVICE_TABLE() macro to declare PCI device table.

16 years agoAdd compatibility for DEFINE_PCI_DEVICE_TABLE() macro.
Ian Abbott [Mon, 28 Apr 2008 15:27:21 +0000 (15:27 +0000)]
Add compatibility for DEFINE_PCI_DEVICE_TABLE() macro.

16 years agoFixed adv_pci_dio to use module name as comedi_config name, as all
Frank Mori Hess [Mon, 28 Apr 2008 01:08:21 +0000 (01:08 +0000)]
Fixed adv_pci_dio to use module name as comedi_config name, as all
pci drivers do.

16 years agoFixed an obvious typo in a comment (OCI --> PCI).
Ian Abbott [Fri, 25 Apr 2008 11:57:53 +0000 (11:57 +0000)]
Fixed an obvious typo in a comment (OCI --> PCI).

16 years agoDon't tag module device tables with '__devinitdata'.
Ian Abbott [Fri, 18 Apr 2008 15:44:49 +0000 (15:44 +0000)]
Don't tag module device tables with '__devinitdata'.

16 years agoMoved me4000_pci_table[] from me4000.h to me4000.c.
Ian Abbott [Fri, 18 Apr 2008 15:29:41 +0000 (15:29 +0000)]
Moved me4000_pci_table[] from me4000.h to me4000.c.

16 years agoFixed compilation error for 2.6.25 kernel. Moved '__devinitdata' to left
Ian Abbott [Fri, 18 Apr 2008 15:20:04 +0000 (15:20 +0000)]
Fixed compilation error for 2.6.25 kernel.  Moved '__devinitdata' to left
side of '=' operator.

16 years agoUse __module_get(THIS_MODULE) instead of try_module_get(THIS_MODULE) as we
Ian Abbott [Fri, 18 Apr 2008 13:47:38 +0000 (13:47 +0000)]
Use __module_get(THIS_MODULE) instead of try_module_get(THIS_MODULE) as we
know our own module is active.

16 years agoDon't bother checking MOD_IN_USE in comedi_cleanup.
Ian Abbott [Fri, 18 Apr 2008 13:44:12 +0000 (13:44 +0000)]
Don't bother checking MOD_IN_USE in comedi_cleanup.

16 years agoAdded __module_get() compatibility (just in case we ever support 2.4.x
Ian Abbott [Fri, 18 Apr 2008 13:40:09 +0000 (13:40 +0000)]
Added __module_get() compatibility (just in case we ever support 2.4.x
kernels again!).

16 years agoChanged initializers of 'ni_gainlkup[][16]' and 'ni_range_lkup[]' to use
Ian Abbott [Wed, 16 Apr 2008 15:05:46 +0000 (15:05 +0000)]
Changed initializers of 'ni_gainlkup[][16]' and 'ni_range_lkup[]' to use
index designators (just to help readability).

16 years agoFixed value that used to calculate ao hardware fifo size which was
Frank Mori Hess [Wed, 16 Apr 2008 12:45:50 +0000 (12:45 +0000)]
Fixed value that used to calculate ao hardware fifo size which was
in number of samples, but should have been number
of bytes.

16 years agoCorrected error in previous commit (PCI bus/slot option support).
Ian Abbott [Mon, 14 Apr 2008 14:58:50 +0000 (14:58 +0000)]
Corrected error in previous commit (PCI bus/slot option support).

16 years agoAdded PCI bus/slot configuration options.
Ian Abbott [Mon, 14 Apr 2008 14:47:56 +0000 (14:47 +0000)]
Added PCI bus/slot configuration options.

16 years agoDocumented pci bus/slot configuration options.
Ian Abbott [Mon, 14 Apr 2008 14:43:44 +0000 (14:43 +0000)]
Documented pci bus/slot configuration options.

16 years agoUpdated heading comment as the PCI bus/slot options were incorrectly
Ian Abbott [Mon, 14 Apr 2008 14:17:28 +0000 (14:17 +0000)]
Updated heading comment as the PCI bus/slot options were incorrectly
marked as "unimplemented".

16 years agoDescribe bus/slot options.
Ian Abbott [Mon, 14 Apr 2008 14:13:57 +0000 (14:13 +0000)]
Describe bus/slot options.

16 years agoAdded Stephen Chivers (Advantech PCI-1736UP support).
Ian Abbott [Mon, 14 Apr 2008 10:00:59 +0000 (10:00 +0000)]
Added Stephen Chivers (Advantech PCI-1736UP support).

16 years agoMoved a few entries to keep in order.
Ian Abbott [Mon, 14 Apr 2008 09:59:29 +0000 (09:59 +0000)]
Moved a few entries to keep in order.

16 years agoAdded support for Advantech PCI-1736UP.
Ian Abbott [Mon, 14 Apr 2008 09:53:33 +0000 (09:53 +0000)]
Added support for Advantech PCI-1736UP.
(Code supplied by Stephen Chivers <schivers at csc dot com dot au>.)

16 years agoCorrected PCMCIA test in revision 1.43.
Ian Abbott [Sat, 12 Apr 2008 20:24:03 +0000 (20:24 +0000)]
Corrected PCMCIA test in revision 1.43.

16 years agoOops, I forgot the module init and exit functions!
Ian Abbott [Sat, 12 Apr 2008 20:12:42 +0000 (20:12 +0000)]
Oops, I forgot the module init and exit functions!

16 years agoStopped the 'ni_atmio' and 'ni_mio_cs' drivers depending on the 'mite'
Ian Abbott [Fri, 11 Apr 2008 15:54:27 +0000 (15:54 +0000)]
Stopped the 'ni_atmio' and 'ni_mio_cs' drivers depending on the 'mite'
module indirectly.  The 'ni_tio' module has been split into two modules,
'ni_tio' and 'ni_tiocmd'.  The 'ni_tiocmd' module has the command
processing that depends on the 'mite' module.  The 'ni_tio' module no
longer depends on 'mite'.

Also fixed some .symvers dependencies for non-Kbuild builds.

16 years agoChanged condition for including <asm/bug.h>.
Ian Abbott [Fri, 11 Apr 2008 11:16:41 +0000 (11:16 +0000)]
Changed condition for including <asm/bug.h>.

16 years agoChanged linux/kref.h compatibility header to make the API appear to be like
Ian Abbott [Fri, 11 Apr 2008 11:11:28 +0000 (11:11 +0000)]
Changed linux/kref.h compatibility header to make the API appear to be like
it is in the 2.6.12 kernel.

16 years agoCorrected previous commit.
Ian Abbott [Thu, 10 Apr 2008 17:44:24 +0000 (17:44 +0000)]
Corrected previous commit.

16 years agoI broke it in the previous commit.
Ian Abbott [Thu, 10 Apr 2008 17:18:11 +0000 (17:18 +0000)]
I broke it in the previous commit.

16 years agoAllow Comedi to be built without PCI drivers. The PCI drivers won't be built
Ian Abbott [Thu, 10 Apr 2008 14:43:06 +0000 (14:43 +0000)]
Allow Comedi to be built without PCI drivers. The PCI drivers won't be built
if the kernel has no PCI support or if a new configure option '--disable-pci'
is used.

16 years agoMoved labpc_cs_boards[] from ni_labpc.c to ni_labpc_cs.c and exported
Ian Abbott [Thu, 10 Apr 2008 11:01:40 +0000 (11:01 +0000)]
Moved labpc_cs_boards[] from ni_labpc.c to ni_labpc_cs.c and exported
range_labpc_1200_ai, labpc_1200_ai_gain_bits[] and labpc_1200_is_unipolar[]
from ni_labpc.c for use by ni_labpc_cs.c.

16 years agoAdded automake conditionals CONFIG_COMEDI_USB and CONFIG_COMEDI_PCMCIA and
Ian Abbott [Thu, 10 Apr 2008 09:57:29 +0000 (09:57 +0000)]
Added automake conditionals CONFIG_COMEDI_USB and CONFIG_COMEDI_PCMCIA and
used these in place of the automake conditionals CONFIG_USB and
CONFIG_PCMCIA.  The automake conditionals CONFIG_USB and CONFIG_PCMCIA are
no longer used (currently) but they no longer depend on the --disable-usb
or --disable-pcmcia configure options.  The new automake conditional
CONFIG_COMEDI_USB/CONFIG_COMEDI_PCMCIA is 'FALSE' if --disable-usb/
--disable-pcmcia is specified; otherwise it has the same value as
CONFIG_USB/CONFIG_PCMCIA.

Added config.h defines CONFIG_COMEDI_USB and CONFIG_COMEDI_PCMCIA which are
defined only if the corresponding automake conditional is 'TRUE'.

Changed the --(en|dis)able-pcmcia option so that it is no longer necessary
to specify --enable-pcmcia explicitly to build the PCMCIA modules.

16 years agoFixed single-channel ao waveform on 6xxx boards, which I broke with
Frank Mori Hess [Tue, 1 Apr 2008 19:10:35 +0000 (19:10 +0000)]
Fixed single-channel ao waveform on 6xxx boards, which I broke with
last commit.

16 years agoFixed multi-channel analog output commands on pxi-6713.
Frank Mori Hess [Tue, 1 Apr 2008 15:27:49 +0000 (15:27 +0000)]
Fixed multi-channel analog output commands on pxi-6713.

16 years agoAdded INSN_CONFIG_GET_HARDWARE_BUFFER_SIZE and implemented for
Frank Mori Hess [Fri, 28 Mar 2008 15:15:59 +0000 (15:15 +0000)]
Added INSN_CONFIG_GET_HARDWARE_BUFFER_SIZE and implemented for
analog output of NI boards.

16 years agoChanged INSN_GET_PWM_STATUS to INSN_CONFIG_GET_PWM_STATUS.
Frank Mori Hess [Fri, 28 Mar 2008 14:07:45 +0000 (14:07 +0000)]
Changed INSN_GET_PWM_STATUS to INSN_CONFIG_GET_PWM_STATUS.

16 years agoAdded yonggang <rsmgnu at gmail dot com> (Advantech PCI-1723 driver).
Ian Abbott [Wed, 26 Mar 2008 14:27:16 +0000 (14:27 +0000)]
Added yonggang <rsmgnu at gmail dot com> (Advantech PCI-1723 driver).

16 years agoFix for crashes with dma enabled using pci-6143. Based on patch from
Frank Mori Hess [Wed, 26 Mar 2008 14:10:02 +0000 (14:10 +0000)]
Fix for crashes with dma enabled using pci-6143.  Based on patch from
Terry Barnaby <terry1@beam.ltd.uk>, who also identified and located the
source of the problem.

16 years agoUsed DPRINTK() instead of rt_printk() in a few places to generate less
Ian Abbott [Tue, 25 Mar 2008 12:50:38 +0000 (12:50 +0000)]
Used DPRINTK() instead of rt_printk() in a few places to generate less
output on the kernel log by default.

16 years agoUsed comedi_pci_enable() and comedi_pci_disable().
Ian Abbott [Tue, 25 Mar 2008 12:42:38 +0000 (12:42 +0000)]
Used comedi_pci_enable() and comedi_pci_disable().

16 years agoRemoved commented-out variables.
Ian Abbott [Tue, 25 Mar 2008 12:36:00 +0000 (12:36 +0000)]
Removed commented-out variables.

16 years agoUpdated documentation comment and put it in a standard form.
Ian Abbott [Tue, 25 Mar 2008 12:27:53 +0000 (12:27 +0000)]
Updated documentation comment and put it in a standard form.

16 years agoApplied comedi_indent script to source.
Ian Abbott [Tue, 25 Mar 2008 12:10:13 +0000 (12:10 +0000)]
Applied comedi_indent script to source.

16 years agoAdded Advantech PCI-1723 driver by yonggang <rsmgnu at gmail dot com>.
Ian Abbott [Tue, 25 Mar 2008 11:56:07 +0000 (11:56 +0000)]
Added Advantech PCI-1723 driver by yonggang <rsmgnu at gmail dot com>.

16 years ago... and check that ai_mite_chan is not NULL after we have spinlock.
Frank Mori Hess [Fri, 21 Mar 2008 18:48:51 +0000 (18:48 +0000)]
... and check that ai_mite_chan is not NULL after we have spinlock.

16 years agoAdded missing spinlock around usage of devpriv->ai_mite_chan
Frank Mori Hess [Fri, 21 Mar 2008 18:45:23 +0000 (18:45 +0000)]
Added missing spinlock around usage of devpriv->ai_mite_chan

16 years agoFixed check for unspecified clock period for clock source NI_MIO_RTSI_CLOCK
Ian Abbott [Fri, 14 Mar 2008 15:31:22 +0000 (15:31 +0000)]
Fixed check for unspecified clock period for clock source NI_MIO_RTSI_CLOCK
in function ni_set_master_clock().  (Patch from Terry Barnaby of Beam Ltd.)

16 years agoPrevent dereference of NULL chanlist pointer in ai cmdtest leading to
Ian Abbott [Wed, 12 Mar 2008 13:21:58 +0000 (13:21 +0000)]
Prevent dereference of NULL chanlist pointer in ai cmdtest leading to
kernel Oops.

16 years agoSet SDF_CMD_READ subdevice flag if do_cmd and do_cmdtest are set.
Ian Abbott [Wed, 5 Mar 2008 14:14:01 +0000 (14:14 +0000)]
Set SDF_CMD_READ subdevice flag if do_cmd and do_cmdtest are set.
Only set read_subdev if do_cmd and do_cmdtest are set.
Don't set write_subdev as no subdevice supports write commands.

16 years agoAdded Fred Brooks (ni_daq_700 driver).
Ian Abbott [Thu, 21 Feb 2008 12:47:49 +0000 (12:47 +0000)]
Added Fred Brooks (ni_daq_700 driver).

16 years agoChanged subdev_700_insn to include the state of the output channels
Ian Abbott [Thu, 21 Feb 2008 12:36:10 +0000 (12:36 +0000)]
Changed subdev_700_insn to include the state of the output channels
(0 to 7) in the returned data.  This may be inaccurate unless the output
channels have been written at least once.

16 years agoChanged the name in the second entry of the boards array to "ni_daq_700"
Ian Abbott [Thu, 21 Feb 2008 12:26:24 +0000 (12:26 +0000)]
Changed the name in the second entry of the boards array to "ni_daq_700"
to match the driver name.  This is an alias of the first entry which has
the name "daqcard-700".

16 years agoRemoved spurious '#define _700_H'.
Ian Abbott [Thu, 21 Feb 2008 12:22:31 +0000 (12:22 +0000)]
Removed spurious '#define _700_H'.

16 years agoUpdated driver description using information from other comments.
Ian Abbott [Thu, 21 Feb 2008 12:20:53 +0000 (12:20 +0000)]
Updated driver description using information from other comments.

16 years agoRan source through comedi_indent script.
Ian Abbott [Thu, 21 Feb 2008 12:02:27 +0000 (12:02 +0000)]
Ran source through comedi_indent script.

16 years agoAdded NI DAQCard-700 DIO-only driver by fred brooks.
Ian Abbott [Thu, 21 Feb 2008 11:54:51 +0000 (11:54 +0000)]
Added NI DAQCard-700 DIO-only driver by fred brooks.

16 years agoApplied update to driver documentation section from jeremy theler:
Ian Abbott [Thu, 21 Feb 2008 11:21:47 +0000 (11:21 +0000)]
Applied update to driver documentation section from jeremy theler:
- corrected 'Devices' line
- updated status
- updated description and changelog.
I corrected the year in jeremy's updated 'Updated' line.

16 years agoAdd PCI bus/slot options.
Ian Abbott [Fri, 15 Feb 2008 10:57:25 +0000 (10:57 +0000)]
Add PCI bus/slot options.

16 years agoFixed spelling error "sucess"->"success".
Frank Mori Hess [Fri, 8 Feb 2008 19:03:07 +0000 (19:03 +0000)]
Fixed spelling error "sucess"->"success".

16 years agoforgotten to uncomment the debug macro. Soooory.
Bernd Porr [Tue, 5 Feb 2008 22:47:03 +0000 (22:47 +0000)]
forgotten to uncomment the debug macro. Soooory.

16 years agoSilly mistake in the frequency setting. Sent out the wrong variable
Bernd Porr [Tue, 5 Feb 2008 22:43:48 +0000 (22:43 +0000)]
Silly mistake in the frequency setting. Sent out the wrong variable
to the dux board so that the frequency was more or less a random choice.
Thanks for Sam for figuring that out.

16 years agoFor separate kernel source and build directories, allow the kernel build
Ian Abbott [Mon, 4 Feb 2008 16:47:54 +0000 (16:47 +0000)]
For separate kernel source and build directories, allow the kernel build
directory's Makefile to specify KERNELSRC using a relative path.
This avoids having to use the --with-kernelsrcdir option when configuring
Comedi for SuSE Linux's kernels.

16 years agoModified output to be tab-delimited (for easier parsing later into a
Frank Mori Hess [Wed, 30 Jan 2008 16:39:06 +0000 (16:39 +0000)]
Modified output to be tab-delimited (for easier parsing later into a
html table).

16 years agoregenerated ChangeLog with "cvs2cl -T" v0_7_76
Frank Mori Hess [Mon, 28 Jan 2008 21:09:42 +0000 (21:09 +0000)]
regenerated ChangeLog with "cvs2cl -T"

16 years agobumped version for 0.7.76 release.
Frank Mori Hess [Mon, 28 Jan 2008 20:51:14 +0000 (20:51 +0000)]
bumped version for 0.7.76 release.

16 years agoAllow generation of devices.txt and drivers.txt to work
Frank Mori Hess [Mon, 28 Jan 2008 20:04:24 +0000 (20:04 +0000)]
Allow generation of devices.txt and drivers.txt to work
when builddir != srcdir.

16 years agoSuppress some compiler warnings
Frank Mori Hess [Mon, 28 Jan 2008 20:03:04 +0000 (20:03 +0000)]
Suppress some compiler warnings

16 years agoReplaced an "if(0)" with an "#if 0".
Frank Mori Hess [Mon, 28 Jan 2008 19:32:30 +0000 (19:32 +0000)]
Replaced an "if(0)" with an "#if 0".

16 years agoFix bug in ni_pcidio_release_di_mite_channel() that prevented subsequent
Ian Abbott [Mon, 28 Jan 2008 13:54:16 +0000 (13:54 +0000)]
Fix bug in ni_pcidio_release_di_mite_channel() that prevented subsequent
commands working (it never set devpriv->di_mite_chan to NULL after calling
mite_release_channel()).

16 years agoCorrected number of channels for DO subdevice.
Ian Abbott [Wed, 16 Jan 2008 17:03:48 +0000 (17:03 +0000)]
Corrected number of channels for DO subdevice.

16 years agoIn comedi_do_insn:
Ian Abbott [Mon, 14 Jan 2008 18:05:35 +0000 (18:05 +0000)]
In comedi_do_insn:
For INSN_WAIT, make sure insn->n is exactly 1.
For subdevice instructions, if subdevice is unused, return -EIO.
For subdevice instructions, if chanspec is wrong, return -EINVAL.

16 years agoIn comedi_do_insn, #if'ed out the final check for return value of subdevice
Ian Abbott [Mon, 14 Jan 2008 17:59:31 +0000 (17:59 +0000)]
In comedi_do_insn, #if'ed out the final check for return value of subdevice
insn function matching insn.n.  Comedi documentation for userspace
comedi_do_insn allows a lower value to be returned and some drivers
blatently do so, particularly for configuration instructions.

Also added some XXX reminder comments for INSN_WAIT and INSN_CONFIG for
things that need to be fixed.

16 years agoCorrected test for INSN_WRITE data value exceeding maxdata. It failed on
Ian Abbott [Mon, 14 Jan 2008 12:26:16 +0000 (12:26 +0000)]
Corrected test for INSN_WRITE data value exceeding maxdata. It failed on
subdevices that used per-channel maxdata values (maxdata_list).

16 years agoApplied comedi_indent script.
Ian Abbott [Mon, 14 Jan 2008 12:13:26 +0000 (12:13 +0000)]
Applied comedi_indent script.