regenerated ChangeLog with "cvs2cl -T" v0_7_76
authorFrank Mori Hess <fmhess@speakeasy.net>
Mon, 28 Jan 2008 21:09:42 +0000 (21:09 +0000)
committerFrank Mori Hess <fmhess@speakeasy.net>
Mon, 28 Jan 2008 21:09:42 +0000 (21:09 +0000)
ChangeLog

index 6779acfe48e30a4ca2c0045a504313205998276a..aeb2e5af934f6bfe93edaef69030d65b9e8d8014 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,843 @@
+2008-01-28 15:51  fmhess
+
+       * configure.ac: bumped version for 0.7.76 release.
+
+2008-01-28 15:04  fmhess
+
+       * Makefile.am: Allow generation of devices.txt and drivers.txt to
+         work when builddir != srcdir.
+
+2008-01-28 15:03  fmhess
+
+       * comedi/drivers/ni_mio_common.c: Suppress some compiler warnings
+
+2008-01-28 14:32  fmhess
+
+       * comedi/drivers/ni_mio_common.c: Replaced an "if(0)" with an "#if
+         0".
+
+2008-01-28 08:54  abbotti
+
+       * comedi/drivers/ni_pcidio.c: 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()).
+
+2008-01-16 12:03  abbotti
+
+       * comedi/drivers/ni_65xx.c: Corrected number of channels for DO
+         subdevice.
+
+2008-01-14 13:05  abbotti
+
+       * comedi/kcomedilib/kcomedilib_main.c: 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.
+
+2008-01-14 12:59  abbotti
+
+       * comedi/kcomedilib/kcomedilib_main.c: 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.
+
+2008-01-14 07:26  abbotti
+
+       * comedi/comedi_fops.c: Corrected test for INSN_WRITE data value
+         exceeding maxdata. It failed on subdevices that used per-channel
+         maxdata values (maxdata_list).
+
+2008-01-14 07:13  abbotti
+
+       * comedi/comedi_fops.c: Applied comedi_indent script.
+
+2008-01-13 18:07  bporr
+
+       * comedi/comedi_fops.c, comedi/drivers/usbdux.c,
+         include/linux/comedi.h: Added a proper PWM subdevice for comedi.
+         PWM is started with INSN_CONFIG_ARM where the second argument
+         defines the time how long PWM will last. A zero indicates
+         "forever".  PWM is stopped with INSN_CONFIG_DISARM. No further
+         args.  The duty cycle is set via a comedi_data_write where
+         maxdata defines the 100% duty cycle.  The PWM period is set by
+         INSN_CONFIG_PWM_SET_PERIOD where the second argument is in
+         nanoseconds, thus 1E9/frequency INSN_CONFIG_PWM_GET_PERIOD
+         retrieves the frequency which might have been corrected by the
+         driver INSN_GET_PWM_STATUS queries if it's on or off
+         INSN_CONFIG_PWM_SET_H_BRIDGE allows the transmit the duty cycle
+         with a polarity bit in the second argument.  See the usbdux
+         driver and its PWM section.
+
+2008-01-07 06:05  abbotti
+
+       * comedi/comedi_fops.c: Only set SRF_RT subdevice flag if
+         comedi_switch_to_rt(dev) succeeds.
+
+2008-01-02 12:41  abbotti
+
+       * comedi/comedi_fops.c: For COMEDI_DEVCONFIG ioctl, if argument is
+         NULL, refuse to unconfigure the device if any subdevices are busy
+         or have mmap'ed buffers.  The errno is EBUSY in this case.
+
+2008-01-02 12:04  abbotti
+
+       * comedi/comedi_fops.c: Changed read, write, poll, and mmap file
+         operations to use the per-device mutex.  The mutex is released
+         during read and write operations that block.
+
+2008-01-01 21:17  fmhess
+
+       * comedi/drivers/cb_pcidas64.c: Added board entry for 6013.
+
+2007-12-20 10:12  abbotti
+
+       * m4/as-linux.m4: Once the linux build directory has been
+         determined ($LINUX_DIR), try and override the previous setting of
+         the LINUX_KERNEL_RELEASE variable using the release info from the
+         Linux build directory.  Information comes from the UTS_RELEASE C
+         macro.  For kernel versions 2.6.18 and later this is defined in
+         include/linux/utsrelease.h.  For earlier kernel versions it is
+         defined in include/linux/version.h.
+
+2007-12-17 11:43  abbotti
+
+       * configure.ac, m4/as-linux.m4: Some changes for separate Linux
+         source and build trees.  Add LINUX_SRC_DIR variable to point to
+         Linux source tree (LINUX_DIR points to the Linux build tree).  It
+         can be set with a new --with-linuxsrcdir option or determined
+         automatically from the build tree.  Changed some configure tests
+         to check the Linux source tree instead of the build tree.  The
+         affected tests are COMEDI_CHECK_PCMCIA_PROBE,
+         COMEDI_CHECK_LINUX_KBUILD and COMEDI_CHECK_HAVE_MUTEX_H.  The
+         COMEDI_CHECK_LINUX_KBUILD test has been simplified because it no
+         longer has to check for separate source and build trees.
+
+2007-12-12 09:55  abbotti
+
+       * comedi/comedi_fops.c, comedi/drivers.c,
+         include/linux/comedidev.h: Use unlocked_ioctl file operation
+         instead of ioctl if kernel supports it and use a mutex in struct
+         comedi_device.  Some parts of the driver still need to be changed
+         to use the mutex.
+
+2007-12-12 09:51  abbotti
+
+       * configure.ac, m4/as-linux.m4: Check for include/linux/mutex.h in
+         kernel source.
+
+2007-12-12 09:47  abbotti
+
+       * include/linux/: Makefile.am, mutex.h: Added compatibility header
+         for <linux/mutex.h>.
+
+2007-12-12 08:47  abbotti
+
+       * comedi/drivers/Makefile.am: For non-Kbuild make, don't build
+         addi-data drivers that use floating point, but include source in
+         EXTRA_DIST.  (Kbuild make already skips these drivers.)
+
+2007-12-12 07:42  abbotti
+
+       * comedi/drivers/addi-data/addi_common.h: Corrected type qualifiers
+         for pc_DriverName in boardtype.
+
+2007-12-12 07:28  abbotti
+
+       * comedi/drivers/addi-data/hwdrv_APCI1710.h: Removed #defines for
+         types (now they're all in addi_common.h).
+
+2007-12-12 07:27  abbotti
+
+       * comedi/drivers/addi-data/addi_common.h: Use typedef instead of
+         #define to define MS-Windows types.  Add a few more pointer
+         types.
+
+2007-12-12 06:34  abbotti
+
+       * comedi/comedi_compat32.c: Include <linux/ioctl32.h> if using
+         old-style register_ioctl32_conversion.
+
+2007-12-11 22:12  fmhess
+
+       * comedi/drivers/ni_pcimio.c: Converted initialization of board
+         array to modern standard (indent does a slightly less bad job of
+         indenting it this way).
+
+2007-12-05 12:02  abbotti
+
+       * comedi/comedi_fops.c: For read and write, check if command still
+         running in non-blocking mode as well.
+
+2007-12-05 09:45  abbotti
+
+       * comedi/kcomedilib/kcomedilib_main.c: Check for various errors
+         such as subdevice in range and support for commands.  Use
+         comedi_set_subdevice_runflags and comedi_get_subdevice_runflags
+         when checking/modifying SRF_RT runflag.
+
+2007-12-05 09:41  abbotti
+
+       * include/linux/comedi_rt.h: If comedi_switch_to_rt() is a macro it
+         should stil have a return value.
+
+2007-12-05 07:52  abbotti
+
+       * comedi/comedi_fops.c, comedi/comedi_ksyms.c,
+         comedi/kcomedilib/kcomedilib_main.c, include/linux/comedidev.h:
+         Use per-subdevice spin-lock instead of big_comedi_lock.  Renamed
+         existing subdevice 'runflags_lock' to 'spin_lock' for more
+         general use.  (Could have used a separate spin-lock for
+         locking/unlocking subdevices, but there shouldn't be much
+         contention for the existing spin-lock used for setting/ getting
+         runflags.)
+
+2007-12-04 10:30  abbotti
+
+       * include/asm/io.h: Define mmiowb() macro if necessary.
+
+2007-12-04 08:11  abbotti
+
+       * include/linux/slab.h: No need to define kcalloc() compatibility
+         function for kernel 2.6.9 onwards.  The kzalloc() compatibility
+         function is still required for vanilla kernels prior to 2.6.14,
+         but some versions of RHEL4 2.6.9 kernel (e.g. 2.6.9-42) already
+         declare it, so use a macro to override it with our own version.
+
+2007-12-03 12:47  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Expanded documentation for the
+         driver.
+
+2007-12-03 09:47  abbotti
+
+       * comedi/drivers/amplc_dio200.c: Report error event when command
+         stopped due to buffer overflow.
+
+2007-12-03 09:43  abbotti
+
+       * comedi/drivers/amplc_dio200.c: Avoid setting s->async->inttrig to
+         NULL in interrupt routine.
+
+2007-12-03 09:36  abbotti
+
+       * comedi/drivers/amplc_pci224.c: Avoid setting s->async->inttrig to
+         NULL in interrupt routine.
+
+2007-12-03 08:57  abbotti
+
+       * comedi/drivers/amplc_pci230.c: For AO command, if scan_begin_src
+         is TRIG_INT and not using DAC FIFO, need to call comedi_event()
+         in the inttrig function because it isn't being called anywhere
+         else.
+
+2007-12-03 08:31  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Avoid changing s->async->inttrig
+         during an interrupt.  In particular, do not set it to NULL when
+         stopping command during interrupt.
+
+2007-11-30 13:37  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Use DAC FIFO if the card has one
+         (PCI230+ hardware version 2).
+
+2007-11-30 07:21  abbotti
+
+       * include/linux/comedi.h: Added enums for Amplicon DIO card clock
+         and gate sources.
+
+2007-11-29 10:49  abbotti
+
+       * comedi/drivers/amplc_pci224.c: For AO command test step 3, return
+         3 if external trigger flags have been corrected.
+
+2007-11-28 09:48  abbotti
+
+       * comedi/drivers/amplc_pci230.c: When stopping AO command, only
+         stop timer if using it (scan_begin_src==TRIG_TIMER).
+
+2007-11-28 06:12  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Release Z2-CT2 resource after AI
+         command started if convert_src is neither TRIG_TIMER nor
+         TRIG_INT.
+
+2007-11-27 11:43  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Avoid using software conversion
+         trigger as it doesn't work very well for differential mode on
+         some versions of PCI230/260.  Use Z2 timer 2 output instead and
+         toggle the output in software to trigger a conversion.  Note that
+         the ADC busy bit only works for software triggers in non-FIFO
+         mode, so for AI INSN_READ, use the FIFO and the FIFO status bits
+         to check when the conversion is complete.
+
+2007-11-27 08:17  abbotti
+
+       * include/linux/comedi_rt.h: RTAI support was broken in
+         comedi-0.7.75 due to missing RTAI_VERSION_CODE and
+         RTAI_MANGLE_VERSION in comedi/drivers/comedi_rt_timer.c.  Added
+         #include <rtai_version.h> to include/linux/comedi_rt.h to fix it.
+
+2007-11-27 07:52  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Insert delay after AI internal
+         conversion trigger (convert_src==TRIG_INT) so we don't trigger
+         more often than the hardware is capable of.
+
+2007-11-26 12:56  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Use programmable ADC FIFO
+         interrupt trigger level and ADC FIFO level registers on
+         PCI230+/260+ to reduce number of interrupts required when FIFO
+         interrupt trigger level would otherwise be "trigger when not
+         empty".
+
+2007-11-25 16:22  bporr
+
+       * comedi/drivers/usbdux.c: Added PWM to the USBDUX. Also moved any
+         synchronous commands to EP1 which should reduce the latency
+         dramatically because it is single buffered which forces the host
+         to wait (no race checks needed anymore). The EP4 is now used for
+         the PWM.  The bit patterns are generated in this driver and the
+         GPIF on the FX2 streams these automatically out through the
+         digital port.
+
+2007-11-23 12:09  abbotti
+
+       * comedi/drivers/amplc_pci230.c: For AI command, allow
+         scan_begin_src == EXT_TRIG for PCI260+ (but not PCI260).  It will
+         use the EXTTRIG/EXTCONVCLK input on pin 17 instead of the PPIC0
+         input that is used for PCI230.
+
+2007-11-23 11:47  abbotti
+
+       * comedi/drivers/amplc_pci230.c: For AO command, support
+         scan_begin_src == TRIG_INT.  (Not terribly useful.) Also, if
+         scan_begin_src == TRIG_TIMER, make sure the timer gate is set
+         high to enable counting.
+
+2007-11-23 11:08  abbotti
+
+       * comedi/drivers/amplc_pci230.c: For AI commands, support TRIG_INT
+         for start_src, scan_begin_src and convert_src, but not all at the
+         same time.
+
+2007-11-23 10:05  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Increased maximum length of
+         channel list for AI command to 256 to allow a repeated
+         subsequence of channels to be used with a reasonable number of
+         repeats.  Can't make the maximum length too long or the
+         generation of N pulses using a monostable as a gate would
+         generate too many pulses in some circumstances.
+
+2007-11-23 09:55  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Support scan_begin_src ==
+         TRIG_TIMER for AI command, but not at same time as AO command as
+         it uses one of the same 8254 counters.  Also, gone back to using
+         timer mode 3 (square wave) instead of mode 2 (pulse) as it seems
+         to induce less noise.
+
+2007-11-23 06:04  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Changed some macros.  No
+         functional changes.
+
+2007-11-22 13:20  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Overhauled setting up and handling
+         of commands, internal timers, and interrupts.
+
+2007-11-21 13:14  fmhess
+
+       * comedi/drivers/adv_pci_dio.c: Fixed offset for isolated digital
+         input register on 1762.
+
+2007-11-19 17:42  fmhess
+
+       * AUTHORS: Added Jeremy Theler
+
+2007-11-19 07:26  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Changed types of some members of
+         struct pci230_private and renamed 'ai_stop' to 'ai_continuous'
+         and 'ao_stop' to 'ao_continuous'.  No functional changes.
+
+2007-11-16 09:34  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Reduced maximum speed (increased
+         minimum period) for AO conversion to 125 kHz (8000 ns).
+
+2007-11-16 09:07  abbotti
+
+       * comedi/drivers/amplc_pci230.c: For ai_cmdtest, maximum AI convert
+         rate depends on whether single-ended or differential, and whether
+         the card is a PCI230/260 or PCI230+/260+.
+
+2007-11-16 08:17  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Need to use 'do_div' macro for
+         64-bit division.
+
+2007-11-15 13:02  abbotti
+
+       * comedi/drivers/amplc_pci230.c: For ai_cmdtest, check channel list
+         starts with channel 0 if there is more than one channel and the
+         card is an older PCI230+ or PCI260+ with buggy channel
+         sequencing.
+
+2007-11-15 11:11  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Fix AI channel enables for
+         AREF_DIFF if the hardware is PCI230+ or PCI260+ due to a
+         difference in the way the register works between PCI230 and
+         PCI230+ in differential mode.
+
+2007-11-13 07:01  abbotti
+
+       * comedi/drivers/amplc_pci230.c: For AI command, when convert_src
+         == TRIG_EXT, make interpretation of convert_arg backwards
+         compatible with previous versions if no flag bits are set.
+
+2007-11-12 17:15  fmhess
+
+       * comedi/drivers/ni_mio_common.c: Fixed sign error that prevented
+         commands from aborting properly on errors.
+
+2007-11-12 12:10  abbotti
+
+       * comedi/comedi_compat32.c: Only added a comment.
+
+2007-11-12 11:45  abbotti
+
+       * comedi/drivers/amplc_pci230.c: For AI command, changed
+         interpretation of scan_begin_arg when scan_begin_src is TRIG_EXT.
+         Previously, 0 meant trigger on -ve edge, 1 meant +ve edge.  Now,
+         the CR_INVERT flag is set to trigger on the -ve edge.
+
+2007-11-12 10:04  abbotti
+
+       * comedi/drivers/amplc_pci230.c: The ADC half full flag flag and
+         interrupt occurs at 2049 samples, not 2048 (i.e. it's an "over
+         half full" flag since the FIFO size is 4096).
+
+2007-11-12 09:58  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Use arrays to look up ai gain bits
+         and polarity.
+
+2007-11-12 09:16  abbotti
+
+       * comedi/drivers/adq12b.c: Stripped ".o" from driver name on
+         "Driver:" line for consistency.
+
+2007-11-12 07:16  abbotti
+
+       * comedi/drivers/amplc_pci230.c: For AI INSN_READ, check for
+         out-of-range differential channel - only the first half of the
+         channel numbers can be used if analog ref is AREF_DIFF.
+
+2007-11-10 11:59  fmhess
+
+       * comedi/drivers/: Kbuild, Makefile.am, adq12b.c: Added new driver
+         from jeremy theler <thelerg@ib.cnea.gov.ar> for MicroAxial
+         ADQ12-B.
+
+2007-11-10 11:53  fmhess
+
+       * AUTHORS: Adding trivial email address obfuscation, since some of
+         the AUTHORS files are linked to from the web page.
+
+2007-11-09 11:36  abbotti
+
+       * comedi/drivers/amplc_pci230.c: In pci230_choose_clk_src(), widen
+         the type of the comparison constant 6553600000 from ul to ull.
+
+2007-11-09 11:02  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Check channel lists in AI and AO
+         cmdtest handlers if chanlist != NULL and chanlist_len > 0.
+
+2007-11-09 10:39  abbotti
+
+       * comedi/drivers/amplc_pci224.c: Minor line-length fixes.
+
+2007-11-09 10:23  abbotti
+
+       * comedi/drivers/amplc_pci224.c: In cmdtest, use DPRINTK instead of
+         comedi_error.
+
+2007-11-09 10:19  abbotti
+
+       * comedi/drivers/amplc_pci224.c: For cmdtest, don't return 5 if
+         chanlist_len == 0.
+
+2007-11-09 09:06  abbotti
+
+       * comedi/drivers/amplc_pci224.c: For cmdtest, don't return error 5
+         if chanlist is NULL.
+
+2007-11-09 08:50  abbotti
+
+       * comedi/comedi_fops.c: For COMEDI_CMD ioctl, check chanlist_len >
+         0.
+
+2007-11-09 07:17  abbotti
+
+       * comedi/comedi_compat32.c: I forgot to rename comedi_compat_ioctl_
+         function back to comedi_compat_ioctl in the previous commit.
+
+2007-11-09 06:12  abbotti
+
+       * comedi/: comedi_compat32.c, comedi_compat32.h: Make the
+         'comedi_compat_ioctl' symbole a function (again) instead of a
+         macro (if HAVE_COMPAT_IOCTL is defined).
+
+2007-11-08 12:09  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Got rid of the timer subdevice as
+         it was pretty useless and clashed with the AO and AI subdevices.
+         I may resurrect it as a counter subdevice at some point.
+
+2007-11-08 12:02  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Use 64-bit ns value when
+         determining clock source.
+
+2007-11-08 11:45  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Renamed pci_iobase to iobase1.
+
+2007-11-08 11:33  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Used specific constants for base
+         addresses of 8254 and 8255 chips instead of using the constants
+         for the first channel of each.
+
+2007-11-08 11:21  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Eliminated clock source and
+         divisor values from private data and combined a few functions.
+         Note: reading the period of the timer subdevice is now even more
+         broken than it was before, but I'm planning to remove it anyway
+         due to conflicts with the AI and AO subdevices.
+
+2007-11-08 10:35  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Renamed some macros.  Now access
+         the timebase values via a look-up table to eliminate some switch
+         statements.
+
+2007-11-08 06:51  abbotti
+
+       * comedi/drivers/amplc_pci230.c: amplc_pci230.c whitespace changes
+         / comment reformatting.
+
+2007-11-08 05:52  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Spelling correction in
+         Description: line.
+
+2007-11-07 12:18  abbotti
+
+       * comedi/: comedi_compat32.c, comedi_compat32.h: Fix for 2.6.10 and
+         earlier.  Rename comedi_compat_ioctl function to
+         comedi_compat_ioctl_ and define comedi_compat_ioctl macro to
+         access it.  The comedi_compat_ioctl macro expands to 0 for 2.6.10
+         and earlier (HAVE_COMPAT_IOCTL undefined) so it tried to define a
+         function called '0'!
+
+2007-11-07 11:24  abbotti
+
+       * comedi/comedi_compat32.c: Removed a stray comment.
+
+2007-11-07 11:18  abbotti
+
+       * comedi/comedi_compat32.c: Make sure 32-bit ioctl handler for <=
+         2.6.10 kernel doesn't return -ENOIOCTLCMD.
+
+2007-11-07 11:03  abbotti
+
+       * comedi/: Kbuild, Makefile.am, comedi_compat32.c,
+         comedi_compat32.h, comedi_fops.c: Support 32-bit ioctl calls on
+         64-bit kernel (CONFIG_COMPAT).
+
+2007-11-05 09:07  abbotti
+
+       * comedi/drivers/amplc_dio200.c: Replaced INSN_CONFIG_8254_SET_MODE
+         with INSN_CONFIG_SET_COUNTER_MODE.
+
+2007-11-05 06:50  abbotti
+
+       * comedi/drivers/: me4000.c, ni_mio_common.c: Inline fixes: define
+         inline functions before calling them.  Some versions of gcc treat
+         it as an error.  Others will ignore the inline in this case and
+         compile in a function call.
+
+2007-11-05 06:47  abbotti
+
+       * comedi/drivers/comedi_fc.h: Made cfc_bytes_per_scan() 'static
+         inline' instead of plain 'inline'.
+
+2007-11-04 00:33  fmhess
+
+       * comedi/comedi_fops.c, comedi/comedi_fops.h,
+         comedi/comedi_ksyms.c, comedi/drivers.c, comedi/proc.c,
+         comedi/range.c, comedi/rt.c, comedi/rt_pend_tq.c,
+         comedi/rt_pend_tq.h, comedi/drivers/8253.h,
+         comedi/drivers/8255.c, comedi/drivers/8255.h,
+         comedi/drivers/acl7225b.c, comedi/drivers/addi_apci_035.c,
+         comedi/drivers/addi_apci_all.c, comedi/drivers/adl_pci6208.c,
+         comedi/drivers/adl_pci7296.c, comedi/drivers/adl_pci7432.c,
+         comedi/drivers/adl_pci8164.c, comedi/drivers/adl_pci9111.c,
+         comedi/drivers/adl_pci9118.c, comedi/drivers/adv_pci1710.c,
+         comedi/drivers/adv_pci_dio.c, comedi/drivers/aio_aio12_8.c,
+         comedi/drivers/aio_iiro_16.c, comedi/drivers/am9513.h,
+         comedi/drivers/amcc_s5933.h, comedi/drivers/amplc_dio200.c,
+         comedi/drivers/amplc_pc236.c, comedi/drivers/amplc_pc263.c,
+         comedi/drivers/amplc_pci224.c, comedi/drivers/amplc_pci230.c,
+         comedi/drivers/c6xdigio.c, comedi/drivers/cb_das16_cs.c,
+         comedi/drivers/cb_pcidas.c, comedi/drivers/cb_pcidas64.c,
+         comedi/drivers/cb_pcidda.c, comedi/drivers/cb_pcidio.c,
+         comedi/drivers/cb_pcimdas.c, comedi/drivers/cb_pcimdda.c,
+         comedi/drivers/comedi_bond.c,
+         comedi/drivers/comedi_counter_unstable.h,
+         comedi/drivers/comedi_fc.c, comedi/drivers/comedi_fc.h,
+         comedi/drivers/comedi_parport.c,
+         comedi/drivers/comedi_rt_timer.c, comedi/drivers/comedi_test.c,
+         comedi/drivers/contec_pci_dio.c, comedi/drivers/daqboard2000.c,
+         comedi/drivers/das08.c, comedi/drivers/das08.h,
+         comedi/drivers/das08_cs.c, comedi/drivers/das16.c,
+         comedi/drivers/das16m1.c, comedi/drivers/das1800.c,
+         comedi/drivers/das6402.c, comedi/drivers/das800.c,
+         comedi/drivers/dmm32at.c, comedi/drivers/dt2801.c,
+         comedi/drivers/dt2811.c, comedi/drivers/dt2814.c,
+         comedi/drivers/dt2815.c, comedi/drivers/dt2817.c,
+         comedi/drivers/dt282x.c, comedi/drivers/dt3000.c,
+         comedi/drivers/dt9812.c, comedi/drivers/dt9812.h,
+         comedi/drivers/fl512.c, comedi/drivers/gsc_hpdi.c,
+         comedi/drivers/icp_multi.c, comedi/drivers/icp_multi.h,
+         comedi/drivers/ii_pci20kc.c, comedi/drivers/jr3_pci.c,
+         comedi/drivers/jr3_pci.h, comedi/drivers/ke_counter.c,
+         comedi/drivers/me4000.c, comedi/drivers/me4000.h,
+         comedi/drivers/me_daq.c, comedi/drivers/mite.c,
+         comedi/drivers/mite.h, comedi/drivers/mpc624.c,
+         comedi/drivers/mpc8260cpm.c, comedi/drivers/multiq3.c,
+         comedi/drivers/ni_6527.c, comedi/drivers/ni_65xx.c,
+         comedi/drivers/ni_660x.c, comedi/drivers/ni_670x.c,
+         comedi/drivers/ni_at_a2150.c, comedi/drivers/ni_at_ao.c,
+         comedi/drivers/ni_atmio.c, comedi/drivers/ni_atmio16d.c,
+         comedi/drivers/ni_daq_dio24.c, comedi/drivers/ni_labpc.c,
+         comedi/drivers/ni_labpc.h, comedi/drivers/ni_labpc_cs.c,
+         comedi/drivers/ni_mio_common.c, comedi/drivers/ni_mio_cs.c,
+         comedi/drivers/ni_pcidio.c, comedi/drivers/ni_pcimio.c,
+         comedi/drivers/ni_stc.h, comedi/drivers/ni_tio.c,
+         comedi/drivers/ni_tio.h, comedi/drivers/pcl711.c,
+         comedi/drivers/pcl724.c, comedi/drivers/pcl725.c,
+         comedi/drivers/pcl726.c, comedi/drivers/pcl730.c,
+         comedi/drivers/pcl812.c, comedi/drivers/pcl816.c,
+         comedi/drivers/pcl818.c, comedi/drivers/pcm3724.c,
+         comedi/drivers/pcm3730.c, comedi/drivers/pcmad.c,
+         comedi/drivers/pcmda12.c, comedi/drivers/pcmmio.c,
+         comedi/drivers/pcmuio.c, comedi/drivers/plx9080.h,
+         comedi/drivers/poc.c, comedi/drivers/quatech_daqp_cs.c,
+         comedi/drivers/rtd520.c, comedi/drivers/rtd520.h,
+         comedi/drivers/rti800.c, comedi/drivers/rti802.c,
+         comedi/drivers/s526.c, comedi/drivers/s626.c,
+         comedi/drivers/s626.h, comedi/drivers/serial2002.c,
+         comedi/drivers/skel.c, comedi/drivers/ssv_dnp.c,
+         comedi/drivers/unioxx5.c, comedi/drivers/usbdux.c,
+         comedi/drivers/usbduxfast.c,
+         comedi/drivers/addi-data/APCI1710_82x54.c,
+         comedi/drivers/addi-data/APCI1710_82x54.h,
+         comedi/drivers/addi-data/APCI1710_Chrono.c,
+         comedi/drivers/addi-data/APCI1710_Chrono.h,
+         comedi/drivers/addi-data/APCI1710_Dig_io.c,
+         comedi/drivers/addi-data/APCI1710_Dig_io.h,
+         comedi/drivers/addi-data/APCI1710_INCCPT.c,
+         comedi/drivers/addi-data/APCI1710_INCCPT.h,
+         comedi/drivers/addi-data/APCI1710_Inp_cpt.c,
+         comedi/drivers/addi-data/APCI1710_Inp_cpt.h,
+         comedi/drivers/addi-data/APCI1710_Pwm.c,
+         comedi/drivers/addi-data/APCI1710_Pwm.h,
+         comedi/drivers/addi-data/APCI1710_Ssi.c,
+         comedi/drivers/addi-data/APCI1710_Ssi.h,
+         comedi/drivers/addi-data/APCI1710_Tor.c,
+         comedi/drivers/addi-data/APCI1710_Tor.h,
+         comedi/drivers/addi-data/APCI1710_Ttl.c,
+         comedi/drivers/addi-data/APCI1710_Ttl.h,
+         comedi/drivers/addi-data/addi_amcc_S5920.c,
+         comedi/drivers/addi-data/addi_amcc_S5920.h,
+         comedi/drivers/addi-data/addi_amcc_s5933.h,
+         comedi/drivers/addi-data/addi_common.c,
+         comedi/drivers/addi-data/addi_common.h,
+         comedi/drivers/addi-data/addi_eeprom.c,
+         comedi/drivers/addi-data/amcc_s5933_58.h,
+         comedi/drivers/addi-data/hwdrv_APCI1710.c,
+         comedi/drivers/addi-data/hwdrv_APCI1710.h,
+         comedi/drivers/addi-data/hwdrv_apci035.c,
+         comedi/drivers/addi-data/hwdrv_apci035.h,
+         comedi/drivers/addi-data/hwdrv_apci1032.c,
+         comedi/drivers/addi-data/hwdrv_apci1032.h,
+         comedi/drivers/addi-data/hwdrv_apci1500.c,
+         comedi/drivers/addi-data/hwdrv_apci1500.h,
+         comedi/drivers/addi-data/hwdrv_apci1516.c,
+         comedi/drivers/addi-data/hwdrv_apci1516.h,
+         comedi/drivers/addi-data/hwdrv_apci1564.c,
+         comedi/drivers/addi-data/hwdrv_apci1564.h,
+         comedi/drivers/addi-data/hwdrv_apci16xx.c,
+         comedi/drivers/addi-data/hwdrv_apci16xx.h,
+         comedi/drivers/addi-data/hwdrv_apci2016.c,
+         comedi/drivers/addi-data/hwdrv_apci2016.h,
+         comedi/drivers/addi-data/hwdrv_apci2032.c,
+         comedi/drivers/addi-data/hwdrv_apci2032.h,
+         comedi/drivers/addi-data/hwdrv_apci2200.c,
+         comedi/drivers/addi-data/hwdrv_apci2200.h,
+         comedi/drivers/addi-data/hwdrv_apci3120.c,
+         comedi/drivers/addi-data/hwdrv_apci3120.h,
+         comedi/drivers/addi-data/hwdrv_apci3200.c,
+         comedi/drivers/addi-data/hwdrv_apci3200.h,
+         comedi/drivers/addi-data/hwdrv_apci3501.c,
+         comedi/drivers/addi-data/hwdrv_apci3501.h,
+         comedi/drivers/addi-data/hwdrv_apci3xxx.c,
+         comedi/drivers/addi-data/hwdrv_apci3xxx.h,
+         comedi/kcomedilib/data.c, comedi/kcomedilib/dio.c,
+         comedi/kcomedilib/get.c, comedi/kcomedilib/kcomedilib_main.c,
+         comedi/kcomedilib/ksyms.c, include/asm/div64.h,
+         include/asm/dma.h, include/asm/page.h, include/asm/pgtable.h,
+         include/asm/semaphore.h, include/asm/types.h,
+         include/asm/uaccess.h, include/linux/comedi.h,
+         include/linux/comedi_rt.h, include/linux/comedidev.h,
+         include/linux/comedilib.h, include/linux/compiler.h,
+         include/linux/delay.h, include/linux/device.h,
+         include/linux/interrupt.h, include/linux/isapnp.h,
+         include/linux/kernel.h, include/linux/kref.h, include/linux/mm.h,
+         include/linux/mod_devicetable.h, include/linux/module.h,
+         include/linux/moduleparam.h, include/linux/pci.h,
+         include/linux/pci_ids.h, include/linux/pnp.h,
+         include/linux/sched.h, include/linux/slab.h,
+         include/linux/stddef.h, include/linux/time.h,
+         include/linux/types.h, include/linux/usb.h,
+         include/linux/version.h, include/linux/wrapper.h,
+         include/pcmcia/ds.h: Applied comedi_indent script to all source
+         files.
+
+2007-11-04 00:28  fmhess
+
+       * comedi/drivers/pcl816.c: Removed some dead code that was causing
+         errors in indent program.
+
+2007-11-04 00:14  fmhess
+
+       * comedi/drivers/adv_pci1710.c: Removed some dead code that
+         confused the indent program.
+
+2007-11-04 00:08  fmhess
+
+       * comedi/drivers/dt9812.h: Removed a bit of ifdef'd out code that
+         confuses the indent program.
+
+2007-11-03 23:45  fmhess
+
+       * scripts/comedi_indent: Added wrapper around indent utility with
+         options I'm going to apply to comedi source files.
+
+2007-11-02 07:11  abbotti
+
+       * comedi/drivers.c: Security fix in comedi_buf_alloc() for non-DMA
+         data buffers.  Allocate each page using get_zeroed_page() instead
+         of __get_free_page() to avoid exposing random memory contents to
+         user space if the buffer is mmap'ed.
+
+2007-11-01 13:47  abbotti
+
+       * comedi/drivers/addi-data/: addi_amcc_s5933.h, addi_common.c:
+         Sanitize resource types.  Use new comedi_pci_enable and
+         comedi_pci_disable functions instead of ad hoc calls to
+         request_region and release_region.
+
+2007-11-01 12:14  abbotti
+
+       * comedi/drivers/: icp_multi.c, icp_multi.h: Removed tests for
+         whether PCI device supports bus-mastering as can't tell from PCI
+         device structure.
+
+2007-11-01 12:11  abbotti
+
+       * comedi/drivers/addi-data/: addi_amcc_s5933.h, addi_common.c,
+         addi_common.h: Removed kernel 2.2 and 2.4 compatibility.  Removed
+         checks for whether PCI device supports mastering as can't tell
+         from PCI device structure.
+
+2007-11-01 11:39  abbotti
+
+       * comedi/drivers/: Makefile.am, adl_pci6208.c, adl_pci7296.c,
+         adl_pci7432.c, adl_pci8164.c, adl_pci9111.c, adl_pci9118.c,
+         adv_pci1710.c, adv_pci_dio.c, amplc_dio200.c, amplc_pc236.c,
+         amplc_pc263.c, amplc_pci224.c, amplc_pci230.c, cb_pcidas.c,
+         cb_pcidas64.c, cb_pcidda.c, cb_pcidio.c, cb_pcimdas.c,
+         cb_pcimdda.c, comedi_pci.h, contec_pci_dio.c, daqboard2000.c,
+         das08.c, dt3000.c, gsc_hpdi.c, icp_multi.h, jr3_pci.c,
+         ke_counter.c, me4000.c, me_daq.c, mite.c, rtd520.c, s626.c: New
+         wrapper functions in comedi/drivers/comedi_pci.h:
+         comedi_pci_enable() combines pci_enable_device() and
+         pci_request_regions().  comedi_pci_disable() combines
+         pci_release_regions() and pci_disable_device().  Does the right
+         thing for reference-counted PCI enables in 2.6.20 onwards.
+
+2007-10-31 10:40  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Check result of
+         subdev_8255_init().
+
+2007-10-31 10:15  abbotti
+
+       * comedi/drivers/amplc_pci230.c: For PCI260(+) make subdevice 2
+         UNUSED instead of AO with no channels.
+
+2007-10-31 10:01  abbotti
+
+       * comedi/drivers/amplc_pci230.c: Added pci230+ and pci260+.
+         Currently they are treated same as pci230 and pci260 apart from
+         the increased number of bits on the AI subdevice.  The cards can
+         also be configured as the old pci230 or pci260.
+
+2007-10-30 12:49  abbotti
+
+       * comedi/drivers/comedi_rt_timer.c: Untested compatibility fix for
+         change to rt_task_init in RTAI >= 3.3 (the context of the
+         callback function changed from 'int' to 'long').
+
+2007-10-30 11:46  abbotti
+
+       * comedi/drivers/addi-data/addi_common.c: #ifdef out floating point
+         register stuff.
+
+2007-10-29 11:52  abbotti
+
+       * comedi/drivers/cb_pcidio.c: Added PCI-DIO24 info supplied by
+         Yoshiya Matsuzaka.  Its software interface is same as PCI-DIO24H
+         but with a different PCI device ID.
+
+2007-10-28 20:00  tag r0_7_75
+
+2007-10-28 20:00  fmhess
+
+       * ChangeLog: Regenerated ChangeLog with "cvs2cl -t" for 0.7.75
+         release.
+
+2007-10-28 19:59  fmhess
+
+       * configure.ac: Bumped version for 0.7.75 release
+
 2007-10-26 13:59  fmhess
 
        * comedi/drivers/ii_pci20kc.c: Fixed compile warning on amd64.
          defined by some versions of auto* tools.  Tweaked some obscure
          rules (used some gnu make extensions, but I don't really care).
 
+2007-08-01 15:46  tag r0_7_74
+
 2007-08-01 15:46  fmhess
 
-       * ChangeLog (tags: r0_7_74): Autogenerated ChangeLog with "cvs2cl
-         -t"
+       * ChangeLog: Autogenerated ChangeLog with "cvs2cl -t"
 
 2007-08-01 15:41  fmhess
 
-       * comedi/Makefile.am (tags: r0_7_74): Fix problems apparently
-         caused by builddir not being set by older versions of auto*
-         tools.
+       * comedi/Makefile.am: Fix problems apparently caused by builddir
+         not being set by older versions of auto* tools.
 
 2007-08-01 15:10  fmhess
 
-       * m4/as-linux.m4 (tags: r0_7_74), comedi/Makefile.am: Fixed "make
-         uninstall".  "make distcheck" passes now.
+       * m4/as-linux.m4, comedi/Makefile.am: Fixed "make uninstall".
+         "make distcheck" passes now.
 
 2007-08-01 13:33  abbotti
 
-       * comedi/drivers/: comedi_rt_timer.c, dt2811.c, quatech_daqp_cs.c
-         (utags: r0_7_74): Removed third parameter of calls to
-         comedi_event().
+       * comedi/drivers/: comedi_rt_timer.c, dt2811.c, quatech_daqp_cs.c:
+         Removed third parameter of calls to comedi_event().
 
 2007-08-01 13:21  fmhess
 
        * Makefile.am, configure.ac, include/Makefile.am,
          include/asm/Makefile.am, include/linux/Makefile.am,
-         include/pcmcia/Makefile.am (utags: r0_7_74): Added some missing
-         headers to distribution tarball, bumped version for upcoming
-         release.
+         include/pcmcia/Makefile.am: Added some missing headers to
+         distribution tarball, bumped version for upcoming release.
 
 2007-08-01 13:19  fmhess
 
 
 2007-08-01 09:19  fmhess
 
-       * comedi/kcomedilib/kcomedilib_main.c (tags: r0_7_74): Set
-         SRF_RUNNING in runflags instead of SDF_RUNNING in subdev_flags.
+       * comedi/kcomedilib/kcomedilib_main.c: Set SRF_RUNNING in runflags
+         instead of SDF_RUNNING in subdev_flags.
 
 2007-08-01 08:48  abbotti
 
 
 2007-08-01 07:21  abbotti
 
-       * comedi/drivers/cb_pcidio.c (tags: r0_7_74): Brought PCI resource
-         handling up to scratch.  Cleaned up 8255 subdevices.  Made board
-         data const.  Corrected driver name in a couple of printk calls.
+       * comedi/drivers/cb_pcidio.c: Brought PCI resource handling up to
+         scratch.  Cleaned up 8255 subdevices.  Made board data const.
+         Corrected driver name in a couple of printk calls.
 
 2007-08-01 06:52  abbotti
 
 
 2007-07-31 15:53  fmhess
 
-       * autogen.sh (tags: r0_7_74): simplified autogen.sh
+       * autogen.sh: simplified autogen.sh
 
 2007-07-31 15:02  fmhess
 
-       * comedi/drivers/: cb_pcidio.c, cb_pcimdas.c (tags: r0_7_74),
-         das16m1.c (tags: r0_7_74), s526.c (tags: r0_7_74), s626.c (tags:
-         r0_7_74): Fixed some issues in "Devices:" comment lines used to
+       * comedi/drivers/: cb_pcidio.c, cb_pcimdas.c, das16m1.c, s526.c,
+         s626.c: Fixed some issues in "Devices:" comment lines used to
          generate devices.txt
 
 2007-07-31 14:39  fmhess
 
 2007-07-31 10:45  fmhess
 
-       * AUTHORS (tags: r0_7_74): Updated Bernd Porr's email.
+       * AUTHORS: Updated Bernd Porr's email.
 
 2007-07-31 10:15  fmhess
 
 
 2007-07-31 10:08  fmhess
 
-       * AUTHORS, comedi/drivers/Kbuild (tags: r0_7_74),
-         comedi/drivers/Makefile.am (tags: r0_7_74),
+       * AUTHORS, comedi/drivers/Kbuild, comedi/drivers/Makefile.am,
          comedi/drivers/cb_pcidio.c: New driver from Yoshiya Matsuzaka
          <matsuzay@mail.tains.tohoku.ac.jp> for Measurement Computing
          PCI-DIOxx series.
 
 2007-07-29 23:49  fmhess
 
-       * comedi/drivers/: jr3_pci.c (tags: r0_7_74), s626.c: Fixed comment
-         blocks so they are parsed correctly by dump_doc.
+       * comedi/drivers/: jr3_pci.c, s626.c: Fixed comment blocks so they
+         are parsed correctly by dump_doc.
 
 2007-07-29 23:48  fmhess
 
-       * scripts/dump_doc (tags: r0_7_74): Added warning output if script
-         failed to extract a comment block from driver.
+       * scripts/dump_doc: Added warning output if script failed to
+         extract a comment block from driver.
 
 2007-07-28 22:16  fmhess
 
-       * comedi/drivers/cb_pcidas64.c (tags: r0_7_74): Fix 1V adc range on
-         4020.
+       * comedi/drivers/cb_pcidas64.c: Fix 1V adc range on 4020.
 
 2007-07-28 10:22  fmhess
 
 
 2007-07-27 17:00  fmhess
 
-       * comedi/comedi_fops.c (tags: r0_7_74), comedi/drivers/8255.c
-         (tags: r0_7_74), comedi/drivers/adl_pci9111.c (tags: r0_7_74),
-         comedi/drivers/adl_pci9118.c (tags: r0_7_74),
-         comedi/drivers/adv_pci1710.c (tags: r0_7_74),
-         comedi/drivers/amplc_dio200.c (tags: r0_7_74),
-         comedi/drivers/amplc_pc236.c (tags: r0_7_74),
-         comedi/drivers/amplc_pci224.c (tags: r0_7_74),
-         comedi/drivers/amplc_pci230.c (tags: r0_7_74),
-         comedi/drivers/cb_pcidas.c (tags: r0_7_74),
-         comedi/drivers/comedi_fc.c (tags: r0_7_74),
-         comedi/drivers/comedi_parport.c (tags: r0_7_74),
-         comedi/drivers/comedi_test.c (tags: r0_7_74),
-         comedi/drivers/das16m1.c, comedi/drivers/das1800.c (tags:
-         r0_7_74), comedi/drivers/das6402.c (tags: r0_7_74),
-         comedi/drivers/das800.c (tags: r0_7_74), comedi/drivers/dmm32at.c
-         (tags: r0_7_74), comedi/drivers/dt2814.c (tags: r0_7_74),
-         comedi/drivers/dt282x.c (tags: r0_7_74), comedi/drivers/dt3000.c
-         (tags: r0_7_74), comedi/drivers/me4000.c (tags: r0_7_74),
-         comedi/drivers/ni_6527.c (tags: r0_7_74),
-         comedi/drivers/ni_65xx.c (tags: r0_7_74),
-         comedi/drivers/ni_at_a2150.c (tags: r0_7_74),
-         comedi/drivers/ni_atmio16d.c (tags: r0_7_74),
-         comedi/drivers/ni_labpc.c (tags: r0_7_74),
-         comedi/drivers/ni_mio_common.c (tags: r0_7_74),
-         comedi/drivers/ni_pcidio.c (tags: r0_7_74),
-         comedi/drivers/pcl711.c (tags: r0_7_74), comedi/drivers/pcl812.c
-         (tags: r0_7_74), comedi/drivers/pcl816.c (tags: r0_7_74),
-         comedi/drivers/pcl818.c (tags: r0_7_74), comedi/drivers/pcmmio.c
-         (tags: r0_7_74), comedi/drivers/pcmuio.c (tags: r0_7_74),
-         comedi/drivers/rtd520.c (tags: r0_7_74), comedi/drivers/s626.c,
-         comedi/drivers/usbdux.c (tags: r0_7_74),
-         comedi/drivers/usbduxfast.c (tags: r0_7_74),
-         include/linux/comedidev.h (tags: r0_7_74): Got rid of useless 3rd
-         parameter of comedi_event().
+       * comedi/comedi_fops.c, comedi/drivers/8255.c,
+         comedi/drivers/adl_pci9111.c, comedi/drivers/adl_pci9118.c,
+         comedi/drivers/adv_pci1710.c, comedi/drivers/amplc_dio200.c,
+         comedi/drivers/amplc_pc236.c, comedi/drivers/amplc_pci224.c,
+         comedi/drivers/amplc_pci230.c, comedi/drivers/cb_pcidas.c,
+         comedi/drivers/comedi_fc.c, comedi/drivers/comedi_parport.c,
+         comedi/drivers/comedi_test.c, comedi/drivers/das16m1.c,
+         comedi/drivers/das1800.c, comedi/drivers/das6402.c,
+         comedi/drivers/das800.c, comedi/drivers/dmm32at.c,
+         comedi/drivers/dt2814.c, comedi/drivers/dt282x.c,
+         comedi/drivers/dt3000.c, comedi/drivers/me4000.c,
+         comedi/drivers/ni_6527.c, comedi/drivers/ni_65xx.c,
+         comedi/drivers/ni_at_a2150.c, comedi/drivers/ni_atmio16d.c,
+         comedi/drivers/ni_labpc.c, comedi/drivers/ni_mio_common.c,
+         comedi/drivers/ni_pcidio.c, comedi/drivers/pcl711.c,
+         comedi/drivers/pcl812.c, comedi/drivers/pcl816.c,
+         comedi/drivers/pcl818.c, comedi/drivers/pcmmio.c,
+         comedi/drivers/pcmuio.c, comedi/drivers/rtd520.c,
+         comedi/drivers/s626.c, comedi/drivers/usbdux.c,
+         comedi/drivers/usbduxfast.c, include/linux/comedidev.h: Got rid
+         of useless 3rd parameter of comedi_event().
 
 2007-07-27 16:20  fmhess
 
-       * comedi/drivers/ni_tio.c (tags: r0_7_74): Added read_register()
-         and write_register() inline functions for convenience.  Added
-         some support for reading the joint status2 register.
+       * comedi/drivers/ni_tio.c: Added read_register() and
+         write_register() inline functions for convenience.  Added some
+         support for reading the joint status2 register.
 
 2007-07-27 15:57  abbotti
 
 
 2007-07-27 15:47  abbotti
 
-       * comedi/comedi_fops.c, comedi/comedi_fops.h (tags: r0_7_74),
-         comedi/range.c (tags: r0_7_74), comedi/drivers/acl7225b.c (tags:
-         r0_7_74), comedi/drivers/adl_pci6208.c (tags: r0_7_74),
-         comedi/drivers/adl_pci7296.c (tags: r0_7_74),
-         comedi/drivers/adl_pci7432.c (tags: r0_7_74),
-         comedi/drivers/adl_pci8164.c (tags: r0_7_74),
-         comedi/drivers/adl_pci9111.c, comedi/drivers/adl_pci9118.c,
-         comedi/drivers/adv_pci1710.c, comedi/drivers/adv_pci_dio.c (tags:
-         r0_7_74), comedi/drivers/aio_aio12_8.c (tags: r0_7_74),
-         comedi/drivers/aio_iiro_16.c (tags: r0_7_74),
-         comedi/drivers/amplc_dio200.c, comedi/drivers/amplc_pc236.c,
-         comedi/drivers/amplc_pc263.c (tags: r0_7_74),
+       * comedi/comedi_fops.c, comedi/comedi_fops.h, comedi/range.c,
+         comedi/drivers/acl7225b.c, comedi/drivers/adl_pci6208.c,
+         comedi/drivers/adl_pci7296.c, comedi/drivers/adl_pci7432.c,
+         comedi/drivers/adl_pci8164.c, comedi/drivers/adl_pci9111.c,
+         comedi/drivers/adl_pci9118.c, comedi/drivers/adv_pci1710.c,
+         comedi/drivers/adv_pci_dio.c, comedi/drivers/aio_aio12_8.c,
+         comedi/drivers/aio_iiro_16.c, comedi/drivers/amplc_dio200.c,
+         comedi/drivers/amplc_pc236.c, comedi/drivers/amplc_pc263.c,
          comedi/drivers/amplc_pci224.c, comedi/drivers/amplc_pci230.c,
-         comedi/drivers/cb_das16_cs.c (tags: r0_7_74),
-         comedi/drivers/cb_pcidas.c, comedi/drivers/cb_pcidas64.c,
-         comedi/drivers/cb_pcidda.c (tags: r0_7_74),
-         comedi/drivers/cb_pcimdas.c, comedi/drivers/cb_pcimdda.c (tags:
-         r0_7_74), comedi/drivers/comedi_bond.c (tags: r0_7_74),
-         comedi/drivers/comedi_test.c, comedi/drivers/contec_pci_dio.c
-         (tags: r0_7_74), comedi/drivers/daqboard2000.c (tags: r0_7_74),
-         comedi/drivers/das08.c (tags: r0_7_74), comedi/drivers/das08.h
-         (tags: r0_7_74), comedi/drivers/das08_cs.c (tags: r0_7_74),
-         comedi/drivers/das16.c (tags: r0_7_74), comedi/drivers/das16m1.c,
-         comedi/drivers/das1800.c, comedi/drivers/das800.c,
-         comedi/drivers/dmm32at.c, comedi/drivers/dt2801.c (tags:
-         r0_7_74), comedi/drivers/dt2811.c, comedi/drivers/dt2815.c (tags:
-         r0_7_74), comedi/drivers/dt282x.c, comedi/drivers/dt3000.c,
-         comedi/drivers/dt9812.c (tags: r0_7_74), comedi/drivers/fl512.c
-         (tags: r0_7_74), comedi/drivers/icp_multi.c (tags: r0_7_74),
-         comedi/drivers/ii_pci20kc.c (tags: r0_7_74),
-         comedi/drivers/jr3_pci.c, comedi/drivers/ke_counter.c (tags:
-         r0_7_74), comedi/drivers/me4000.c, comedi/drivers/me4000.h (tags:
-         r0_7_74), comedi/drivers/me_daq.c (tags: r0_7_74),
-         comedi/drivers/mite.c (tags: r0_7_74), comedi/drivers/mpc624.c
-         (tags: r0_7_74), comedi/drivers/ni_6527.c,
-         comedi/drivers/ni_65xx.c, comedi/drivers/ni_660x.c (tags:
-         r0_7_74), comedi/drivers/ni_670x.c (tags: r0_7_74),
-         comedi/drivers/ni_at_a2150.c, comedi/drivers/ni_at_ao.c (tags:
-         r0_7_74), comedi/drivers/ni_atmio.c (tags: r0_7_74),
-         comedi/drivers/ni_atmio16d.c, comedi/drivers/ni_daq_dio24.c
-         (tags: r0_7_74), comedi/drivers/ni_labpc.c,
-         comedi/drivers/ni_labpc.h (tags: r0_7_74),
-         comedi/drivers/ni_labpc_cs.c (tags: r0_7_74),
-         comedi/drivers/ni_mio_common.c, comedi/drivers/ni_mio_cs.c (tags:
-         r0_7_74), comedi/drivers/ni_pcidio.c, comedi/drivers/ni_pcimio.c
-         (tags: r0_7_74), comedi/drivers/ni_stc.h (tags: r0_7_74),
-         comedi/drivers/pcl711.c, comedi/drivers/pcl724.c (tags: r0_7_74),
-         comedi/drivers/pcl726.c (tags: r0_7_74), comedi/drivers/pcl730.c
-         (tags: r0_7_74), comedi/drivers/pcl812.c,
+         comedi/drivers/cb_das16_cs.c, comedi/drivers/cb_pcidas.c,
+         comedi/drivers/cb_pcidas64.c, comedi/drivers/cb_pcidda.c,
+         comedi/drivers/cb_pcimdas.c, comedi/drivers/cb_pcimdda.c,
+         comedi/drivers/comedi_bond.c, comedi/drivers/comedi_test.c,
+         comedi/drivers/contec_pci_dio.c, comedi/drivers/daqboard2000.c,
+         comedi/drivers/das08.c, comedi/drivers/das08.h,
+         comedi/drivers/das08_cs.c, comedi/drivers/das16.c,
+         comedi/drivers/das16m1.c, comedi/drivers/das1800.c,
+         comedi/drivers/das800.c, comedi/drivers/dmm32at.c,
+         comedi/drivers/dt2801.c, comedi/drivers/dt2811.c,
+         comedi/drivers/dt2815.c, comedi/drivers/dt282x.c,
+         comedi/drivers/dt3000.c, comedi/drivers/dt9812.c,
+         comedi/drivers/fl512.c, comedi/drivers/icp_multi.c,
+         comedi/drivers/ii_pci20kc.c, comedi/drivers/jr3_pci.c,
+         comedi/drivers/ke_counter.c, comedi/drivers/me4000.c,
+         comedi/drivers/me4000.h, comedi/drivers/me_daq.c,
+         comedi/drivers/mite.c, comedi/drivers/mpc624.c,
+         comedi/drivers/ni_6527.c, comedi/drivers/ni_65xx.c,
+         comedi/drivers/ni_660x.c, comedi/drivers/ni_670x.c,
+         comedi/drivers/ni_at_a2150.c, comedi/drivers/ni_at_ao.c,
+         comedi/drivers/ni_atmio.c, comedi/drivers/ni_atmio16d.c,
+         comedi/drivers/ni_daq_dio24.c, comedi/drivers/ni_labpc.c,
+         comedi/drivers/ni_labpc.h, comedi/drivers/ni_labpc_cs.c,
+         comedi/drivers/ni_mio_common.c, comedi/drivers/ni_mio_cs.c,
+         comedi/drivers/ni_pcidio.c, comedi/drivers/ni_pcimio.c,
+         comedi/drivers/ni_stc.h, comedi/drivers/pcl711.c,
+         comedi/drivers/pcl724.c, comedi/drivers/pcl726.c,
+         comedi/drivers/pcl730.c, comedi/drivers/pcl812.c,
          comedi/drivers/pcl816.c, comedi/drivers/pcl818.c,
-         comedi/drivers/pcm3724.c (tags: r0_7_74), comedi/drivers/pcmad.c
-         (tags: r0_7_74), comedi/drivers/pcmda12.c (tags: r0_7_74),
-         comedi/drivers/pcmmio.c, comedi/drivers/pcmuio.c,
-         comedi/drivers/poc.c (tags: r0_7_74),
+         comedi/drivers/pcm3724.c, comedi/drivers/pcmad.c,
+         comedi/drivers/pcmda12.c, comedi/drivers/pcmmio.c,
+         comedi/drivers/pcmuio.c, comedi/drivers/poc.c,
          comedi/drivers/quatech_daqp_cs.c, comedi/drivers/rtd520.c,
-         comedi/drivers/rti800.c (tags: r0_7_74), comedi/drivers/rti802.c
-         (tags: r0_7_74), comedi/drivers/s526.c, comedi/drivers/s626.c,
-         comedi/drivers/serial2002.c (tags: r0_7_74),
-         comedi/drivers/skel.c (tags: r0_7_74), comedi/drivers/ssv_dnp.c
-         (tags: r0_7_74), comedi/drivers/usbdux.c,
-         comedi/drivers/usbduxfast.c, comedi/kcomedilib/get.c (tags:
-         r0_7_74), include/linux/comedidev.h: Constified ranges, board
-         structures, and miscellaneous data.
+         comedi/drivers/rti800.c, comedi/drivers/rti802.c,
+         comedi/drivers/s526.c, comedi/drivers/s626.c,
+         comedi/drivers/serial2002.c, comedi/drivers/skel.c,
+         comedi/drivers/ssv_dnp.c, comedi/drivers/usbdux.c,
+         comedi/drivers/usbduxfast.c, comedi/kcomedilib/get.c,
+         include/linux/comedidev.h: Constified ranges, board structures,
+         and miscellaneous data.
 
 2007-07-27 14:52  abbotti
 
-       * comedi/drivers/mpc8260cpm.c (tags: r0_7_74): Change driver name
-         from "dummy" to "mpc8260cpm".
+       * comedi/drivers/mpc8260cpm.c: Change driver name from "dummy" to
+         "mpc8260cpm".
 
 2007-07-27 10:54  abbotti
 
        * comedi/drivers/: cb_pcidda.c, ni_660x.c, ni_mio_common.c,
-         ni_tio.c, unioxx5.c (tags: r0_7_74): Fixed a few compiler
-         warnings.
+         ni_tio.c, unioxx5.c: Fixed a few compiler warnings.
 
 2007-07-27 10:25  abbotti
 
 
 2007-07-26 16:36  fmhess
 
-       * comedi/comedi_fops.c, comedi/comedi_ksyms.c (tags: r0_7_74),
+       * comedi/comedi_fops.c, comedi/comedi_ksyms.c,
          comedi/drivers/mite.c, comedi/drivers/ni_660x.c,
          comedi/drivers/ni_mio_common.c, comedi/drivers/ni_tio.c,
-         comedi/drivers/ni_tio.h (tags: r0_7_74),
-         include/linux/comedidev.h: Protected use of subdevice runflags
-         with spinlock, since it is modified in comedi_event().  Replaced
-         most usage of SDF_RUNNING in subdev_flags with SRF_RUNNING in
-         runflags so I don't have to protect subdev_flags with a lock too.
-         Made mite_release_channel() always disarm and reset mite
-         channel.  Move ack/confirm of counter interrupts/errors into
-         ni_tio.  Added ni_tio_set_mite_channel(), which acquires
-         counter's spinlock before modifiying its mite channel.  Added
-         some missing locking of mite_channel_lock in ni_mio_common.c.
+         comedi/drivers/ni_tio.h, include/linux/comedidev.h: Protected use
+         of subdevice runflags with spinlock, since it is modified in
+         comedi_event().  Replaced most usage of SDF_RUNNING in
+         subdev_flags with SRF_RUNNING in runflags so I don't have to
+         protect subdev_flags with a lock too.  Made
+         mite_release_channel() always disarm and reset mite channel.
+         Move ack/confirm of counter interrupts/errors into ni_tio.  Added
+         ni_tio_set_mite_channel(), which acquires counter's spinlock
+         before modifiying its mite channel.  Added some missing locking
+         of mite_channel_lock in ni_mio_common.c.
 
 2007-07-24 15:45  fmhess
 
-       * comedi/drivers/: mite.c, mite.h (tags: r0_7_74), ni_mio_common.c,
-         ni_pcidio.c: Added mite_done() query to ask if mite channel is
-         currently running, handle CHSR_DONE in mite.c now (in
-         mite_get_status() in particular).
+       * comedi/drivers/: mite.c, mite.h, ni_mio_common.c, ni_pcidio.c:
+         Added mite_done() query to ask if mite channel is currently
+         running, handle CHSR_DONE in mite.c now (in mite_get_status() in
+         particular).
 
 2007-07-24 13:47  abbotti
 
 
 2007-07-24 07:37  abbotti
 
-       * configure.ac, comedi/Makefile.am, comedi/comedi_kbuild.inc.in
-         (tags: r0_7_74): Generate comedi/comedi_kbuild.inc at configure
-         time instead of make time.
+       * configure.ac, comedi/Makefile.am, comedi/comedi_kbuild.inc.in:
+         Generate comedi/comedi_kbuild.inc at configure time instead of
+         make time.
 
 2007-07-24 07:00  abbotti
 
 
 2007-07-16 15:26  fmhess
 
-       * comedi/drivers.c (tags: r0_7_74), comedi/drivers/acl7225b.c,
+       * comedi/drivers.c, comedi/drivers/acl7225b.c,
          comedi/drivers/adl_pci7296.c, comedi/drivers/adl_pci7432.c,
          comedi/drivers/adl_pci8164.c, comedi/drivers/adl_pci9111.c,
          comedi/drivers/adl_pci9118.c, comedi/drivers/adv_pci1710.c,
 2007-07-16 13:39  abbotti
 
        * comedi/rt.c, comedi/rt_pend_tq.c, include/linux/comedi_rt.h,
-         include/linux/interrupt.h (utags: r0_7_74): Fix real-time
-         interrupt handlers for 2.6.19.
+         include/linux/interrupt.h: Fix real-time interrupt handlers for
+         2.6.19.
 
 2007-07-16 10:59  fmhess
 
-       * comedi/comedi_fops.c, comedi/drivers.c, include/linux/comedi.h
-         (tags: r0_7_74), include/linux/comedidev.h: Fixed devinfo ioctl
-         for subdevice files (/dev/comediN_subM).  Made comedi subdevice
-         type defines into an enum.
+       * comedi/comedi_fops.c, comedi/drivers.c, include/linux/comedi.h,
+         include/linux/comedidev.h: Fixed devinfo ioctl for subdevice
+         files (/dev/comediN_subM).  Made comedi subdevice type defines
+         into an enum.
 
 2007-07-16 10:50  fmhess
 
 
 2007-07-05 13:15  abbotti
 
-       * comedi/drivers/: jr3_pci.c, jr3_pci.h (tags: r0_7_74): Replaced
-         direct memory accesses with I/O memory access functions.  Anders
-         Blomdell replaced bitfield types with enum types.
+       * comedi/drivers/: jr3_pci.c, jr3_pci.h: Replaced direct memory
+         accesses with I/O memory access functions.  Anders Blomdell
+         replaced bitfield types with enum types.
 
 2007-07-02 22:44  fmhess
 
 
 2007-06-27 11:31  abbotti
 
-       * comedi/drivers/: amplc_pc236.c, plx9052.h (tags: r0_7_74):
-         Simplified plx9052.h and moved PCI236-specific bits into
-         amplc_pc236.c.
+       * comedi/drivers/: amplc_pc236.c, plx9052.h: Simplified plx9052.h
+         and moved PCI236-specific bits into amplc_pc236.c.
 
 2007-06-27 10:37  abbotti
 
 
 2007-06-27 06:54  abbotti
 
-       * comedi/drivers/icp_multi.h (tags: r0_7_74): Replace
-         pci_find_device with pci_get_device, and use pci_dev_get and
-         pci_dev_put to manage reference count for pci device.
+       * comedi/drivers/icp_multi.h: Replace pci_find_device with
+         pci_get_device, and use pci_dev_get and pci_dev_put to manage
+         reference count for pci device.
 
          Also, check result of kmalloc in pci_card_list_init.
 
          comedi/drivers/amplc_pci224.c, comedi/drivers/amplc_pci230.c,
          comedi/drivers/cb_das16_cs.c, comedi/drivers/cb_pcidas.c,
          comedi/drivers/cb_pcidas64.c, comedi/drivers/cb_pcimdas.c,
-         comedi/drivers/dt3000.c, comedi/drivers/gsc_hpdi.c (tags:
-         r0_7_74), comedi/drivers/icp_multi.c, comedi/drivers/me4000.c,
+         comedi/drivers/dt3000.c, comedi/drivers/gsc_hpdi.c,
+         comedi/drivers/icp_multi.c, comedi/drivers/me4000.c,
          comedi/drivers/ni_6527.c, comedi/drivers/ni_65xx.c,
          comedi/drivers/ni_labpc.c, comedi/drivers/ni_mio_cs.c,
          comedi/drivers/ni_pcidio.c, comedi/drivers/ni_pcimio.c,
          comedi/drivers/pcmmio.c, comedi/drivers/pcmuio.c,
          comedi/drivers/rtd520.c, comedi/drivers/s626.c,
-         comedi/drivers/addi-data/addi_common.c (tags: r0_7_74),
+         comedi/drivers/addi-data/addi_common.c,
          include/linux/interrupt.h: Update deprecated interrupt flags
          (SA_SHIRQ => IRQF_SHARED).
 
 
 2007-02-26 12:23  fmhess
 
-       * Documentation/comedi/insn_config (tags: r0_7_74),
-         comedi/comedi_fops.c, comedi/drivers/ni_65xx.c,
-         comedi/drivers/ni_660x.c, include/linux/comedi.h: Added support
-         for configuring dio direction on NI 660x boards through subdevice
-         1.  Also added support for selecting digital input filter with
+       * Documentation/comedi/insn_config, comedi/comedi_fops.c,
+         comedi/drivers/ni_65xx.c, comedi/drivers/ni_660x.c,
+         include/linux/comedi.h: Added support for configuring dio
+         direction on NI 660x boards through subdevice 1.  Also added
+         support for selecting digital input filter with
          INSN_CONFIG_ALT_FILTER.
 
 2007-02-20 22:23  fmhess
 
 2006-12-19 09:19  fmhess
 
-       * include/linux/comedilib.h (tags: r0_7_74): Added declaration of
+       * include/linux/comedilib.h: Added declaration of
          comedi_mark_buffer_written().
 
 2006-12-18 21:26  fmhess
 
-       * comedi/kcomedilib/ksyms.c (tags: r0_7_74): Added missing export
-         of comedi_mark_buffer_written symbol, as noted by "Andreas
-         Leuner" <al14@inf.tu-dresden.de>
+       * comedi/kcomedilib/ksyms.c: Added missing export of
+         comedi_mark_buffer_written symbol, as noted by "Andreas Leuner"
+         <al14@inf.tu-dresden.de>
 
 2006-12-18 21:20  fmhess
 
-       * include/linux/config.h (tags: r0_7_74): defines from comedi's
-         config.h in the top-level comedi directory are still used.
+       * include/linux/config.h: defines from comedi's config.h in the
+         top-level comedi directory are still used.
 
 2006-12-15 15:54  fmhess
 
 
 2006-12-05 16:50  bporr
 
-       * include/linux/stddef.h (tags: r0_7_74): Moved the boolean
-         definition from the driver files to stddef because from 2.6.19
-         boolean is defined there aleady.
+       * include/linux/stddef.h: Moved the boolean definition from the
+         driver files to stddef because from 2.6.19 boolean is defined
+         there aleady.
 
 2006-12-05 16:46  bporr
 
 2006-11-15 16:25  fmhess
 
        * comedi/comedi_fops.c, comedi/comedi_fops.h, comedi/drivers.c,
-         comedi/proc.c (tags: r0_7_74), comedi/range.c,
-         comedi/drivers/adl_pci9111.c, comedi/drivers/adl_pci9118.c,
-         comedi/drivers/adv_pci1710.c, comedi/drivers/amplc_dio200.c,
-         comedi/drivers/amplc_pc236.c, comedi/drivers/amplc_pci224.c,
-         comedi/drivers/amplc_pci230.c, comedi/drivers/cb_das16_cs.c,
-         comedi/drivers/cb_pcidas.c, comedi/drivers/cb_pcidas64.c,
-         comedi/drivers/cb_pcidda.c, comedi/drivers/comedi_parport.c,
+         comedi/proc.c, comedi/range.c, comedi/drivers/adl_pci9111.c,
+         comedi/drivers/adl_pci9118.c, comedi/drivers/adv_pci1710.c,
+         comedi/drivers/amplc_dio200.c, comedi/drivers/amplc_pc236.c,
+         comedi/drivers/amplc_pci224.c, comedi/drivers/amplc_pci230.c,
+         comedi/drivers/cb_das16_cs.c, comedi/drivers/cb_pcidas.c,
+         comedi/drivers/cb_pcidas64.c, comedi/drivers/cb_pcidda.c,
+         comedi/drivers/comedi_parport.c,
          comedi/drivers/comedi_rt_timer.c, comedi/drivers/comedi_test.c,
          comedi/drivers/das16.c, comedi/drivers/das16m1.c,
          comedi/drivers/das1800.c, comedi/drivers/das800.c,
 
 2006-09-14 13:52  fmhess
 
-       * include/linux/: device.h, mm.h (utags: r0_7_74): Added GPL
-         header.
+       * include/linux/: device.h, mm.h: Added GPL header.
 
 2006-09-11 09:53  fmhess
 
 
 2006-08-21 12:25  abbotti
 
-       * include/linux/time.h (tags: r0_7_74): Fix for SuSE 9.0 2.4.21
-         kernel.  Simplify jiffies_to_msecs() and msecs_to_jiffies() to
-         avoid preprocessor optimisations that depend on HZ being a C
-         constant expression.  Just round the result up to the nearest
-         integer.  The supported range of input values (avoiding
-         arithmetic overflow) is now less than that of the Linux versions
-         of these functions for common values of HZ, but that's unlikely
-         to cause any problems (and if it does we can fix it by making the
-         functions more complicated).
+       * include/linux/time.h: Fix for SuSE 9.0 2.4.21 kernel.  Simplify
+         jiffies_to_msecs() and msecs_to_jiffies() to avoid preprocessor
+         optimisations that depend on HZ being a C constant expression.
+         Just round the result up to the nearest integer.  The supported
+         range of input values (avoiding arithmetic overflow) is now less
+         than that of the Linux versions of these functions for common
+         values of HZ, but that's unlikely to cause any problems (and if
+         it does we can fix it by making the functions more complicated).
 
 2006-08-17 09:52  fmhess
 
        * comedi/drivers/ni_mio_common.c: m-series boards are unhappy if ai
          config fifo is empty, even when you are bypassing it.
 
+2006-08-16 15:18  tag r0_7_73
+
 2006-08-16 15:18  fmhess
 
-       * ChangeLog (tags: r0_7_73): 0.7.73 changes
+       * ChangeLog: 0.7.73 changes
 
 2006-08-16 15:09  fmhess
 
-       * configure.ac (tags: r0_7_73): bump version for 0.7.73
+       * configure.ac: bump version for 0.7.73
 
 2006-08-16 11:55  fmhess
 
-       * comedi/drivers/ni_pcimio.c (tags: r0_7_73): Fixed max ai speed
-         for 628x boards.
+       * comedi/drivers/ni_pcimio.c: Fixed max ai speed for 628x boards.
 
 2006-08-16 11:54  fmhess
 
-       * comedi/drivers/ni_stc.h (tags: r0_7_73): Added bit definitions
-         for m-series ai chanlist configuration register.
+       * comedi/drivers/ni_stc.h: Added bit definitions for m-series ai
+         chanlist configuration register.
 
 2006-08-16 11:22  fmhess
 
-       * comedi/drivers/ni_mio_common.c (tags: r0_7_73): Use new m-series
-         chanlist configuration for m-series boards, instead of relying on
+       * comedi/drivers/ni_mio_common.c: Use new m-series chanlist
+         configuration for m-series boards, instead of relying on
          backwards compatibility with e-series.
 
 2006-08-16 11:21  fmhess
 
-       * include/linux/comedidev.h (tags: r0_7_73): Fixed bytes_per_sample
-         to return correct value in lsampl_t case, was broken due to
-         confusion between subdev->flags and subdev->subdev_flags.
+       * include/linux/comedidev.h: Fixed bytes_per_sample to return
+         correct value in lsampl_t case, was broken due to confusion
+         between subdev->flags and subdev->subdev_flags.
 
 2006-08-15 16:21  fmhess
 
 
 2006-08-15 14:58  fmhess
 
-       * comedi/comedi_fops.c (tags: r0_7_73): Fix rounding up of buffer
-         size to integer multiple of page size.
+       * comedi/comedi_fops.c: Fix rounding up of buffer size to integer
+         multiple of page size.
+
+2006-08-14 10:07  tag r0_7_72
 
 2006-08-14 10:07  fmhess
 
-       * configure.ac (tags: r0_7_72): Bumped version for 0.7.72
+       * configure.ac: Bumped version for 0.7.72
 
 2006-08-14 10:06  fmhess
 
-       * ChangeLog (tags: r0_7_72): Added 0.7.72 changes, and fixed
-         misspellings of Ian Abbott's name.
+       * ChangeLog: Added 0.7.72 changes, and fixed misspellings of Ian
+         Abbott's name.
 
 2006-08-14 10:05  fmhess
 
-       * Contributors (tags: r0_7_73, r0_7_72): Added new contributor.
+       * Contributors: Added new contributor.
 
 2006-08-14 09:45  fmhess
 
-       * comedi/drivers/: aio_aio12_8.c, aio_iiro_16.c (utags: r0_7_72,
-         r0_7_73): Added missing GPL headers.
+       * comedi/drivers/: aio_aio12_8.c, aio_iiro_16.c: Added missing GPL
+         headers.
 
 2006-08-13 22:58  fmhess
 
-       * comedi/drivers/: Kbuild (tags: r0_7_73, r0_7_72), Makefile.am
-         (tags: r0_7_73, r0_7_72), aio_aio12_8.c, aio_iiro_16.c: New
-         drivers from Pablo Mejia <pablo@cctechnol.com>:
+       * comedi/drivers/: Kbuild, Makefile.am, aio_aio12_8.c,
+         aio_iiro_16.c: New drivers from Pablo Mejia
+         <pablo@cctechnol.com>:
 
          We have written basic drivers for two PC-104 boards we are using
          at work and we would like to contribute them to the Comedi
 
 2006-08-11 13:28  abbotti
 
-       * autogen.sh (tags: r0_7_73, r0_7_72): Restore the old COPYING and
-         INSTALL files after they are overwritten by autoreconf -i -f.
+       * autogen.sh: Restore the old COPYING and INSTALL files after they
+         are overwritten by autoreconf -i -f.
 
 2006-08-11 11:08  abbotti
 
-       * Documentation/comedi/Hardware_Driver.HOWTO (tags: r0_7_74,
-         r0_7_73, r0_7_72): Updated 'Adding new drivers' section.
+       * Documentation/comedi/Hardware_Driver.HOWTO: Updated 'Adding new
+         drivers' section.
 
 2006-08-11 09:54  abbotti
 
-       * Makefile.am (tags: r0_7_73, r0_7_72), TODO (tags: r0_7_74,
-         r0_7_73, r0_7_72), Documentation/Configure.help,
+       * Makefile.am, TODO, Documentation/Configure.help,
          Documentation/Configure.help.append: Removed
          Documentation/Configure.help and
          Documentation/Configure.help.append
 
 2006-08-11 09:53  abbotti
 
-       * comedi/drivers/addi-data/Makefile.am (tags: r0_7_74, r0_7_73,
-         r0_7_72): Moved addi_data.c into EXTRA_DIST until the drivers are
-         back in the fold.
+       * comedi/drivers/addi-data/Makefile.am: Moved addi_data.c into
+         EXTRA_DIST until the drivers are back in the fold.
 
 2006-08-11 09:47  abbotti
 
-       * scripts/check_driver (tags: r0_7_74, r0_7_73, r0_7_72): Skipped
-         obsolete tests and added some new ones.
+       * scripts/check_driver: Skipped obsolete tests and added some new
+         ones.
 
 2006-08-11 08:06  abbotti
 
-       * comedi/drivers/das6402.c (tags: r0_7_73, r0_7_72): Corrected a
-         printk format string that I forgot to update in previous commit
-         of das6402.c.
+       * comedi/drivers/das6402.c: Corrected a printk format string that I
+         forgot to update in previous commit of das6402.c.
 
 2006-08-11 07:55  abbotti
 
 
 2006-08-11 07:26  abbotti
 
-       * comedi/: Makefile.am (tags: r0_7_73, r0_7_72),
-         drivers/Makefile.am, drivers/addi-data/Makefile.am,
-         kcomedilib/Makefile.am (tags: r0_7_74, r0_7_73, r0_7_72): Add
-         Kbuild to EXTRA_DIST.
+       * comedi/: Makefile.am, drivers/Makefile.am,
+         drivers/addi-data/Makefile.am, kcomedilib/Makefile.am: Add Kbuild
+         to EXTRA_DIST.
 
 2006-08-11 07:08  abbotti
 
 
 2006-08-08 10:47  fmhess
 
-       * include/linux/types.h (tags: r0_7_74, r0_7_73, r0_7_72): Added
-         missing include for linux/version.h
+       * include/linux/types.h: Added missing include for linux/version.h
 
 2006-08-08 10:40  fmhess
 
-       * comedi/comedi_fops.c (tags: r0_7_72): Added length checks for
-         data array of INSN_CONFIG_ALT_SOURCE and INSN_CONFIG_PWM_OUTPUT
+       * comedi/comedi_fops.c: Added length checks for data array of
+         INSN_CONFIG_ALT_SOURCE and INSN_CONFIG_PWM_OUTPUT
 
 2006-08-07 14:02  abbotti
 
        * comedi/drivers/: amplc_dio200.c, amplc_pc236.c, amplc_pc263.c,
-         amplc_pci224.c (utags: r0_7_72, r0_7_73): Used pci_name() when
-         printing PCI device location.
+         amplc_pci224.c: Used pci_name() when printing PCI device
+         location.
 
 2006-08-07 14:01  abbotti
 
-       * include/linux/pci.h (tags: r0_7_74, r0_7_73, r0_7_72): Add
-         compatibility function pci_name(pci_dev) for kernel < 2.4.22.  It
-         returns the pci device name as a char * (e.g. "00:09.0" for bus
-         0, slot 9, func 0, or "0000:00:09.0" for recent kernels that
-         include the PCI domain in the string).
+       * include/linux/pci.h: Add compatibility function pci_name(pci_dev)
+         for kernel < 2.4.22.  It returns the pci device name as a char *
+         (e.g. "00:09.0" for bus 0, slot 9, func 0, or "0000:00:09.0" for
+         recent kernels that include the PCI domain in the string).
 
 2006-08-07 13:33  abbotti
 
-       * comedi/drivers/8255.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/adl_pci6208.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/adl_pci9111.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/adl_pci9118.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/adv_pci1710.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/adv_pci_dio.c (tags: r0_7_73, r0_7_72),
+       * comedi/drivers/8255.c, comedi/drivers/adl_pci6208.c,
+         comedi/drivers/adl_pci9111.c, comedi/drivers/adl_pci9118.c,
+         comedi/drivers/adv_pci1710.c, comedi/drivers/adv_pci_dio.c,
          comedi/drivers/amplc_dio200.c, comedi/drivers/amplc_pc236.c,
          comedi/drivers/amplc_pc263.c, comedi/drivers/amplc_pci224.c,
-         comedi/drivers/amplc_pci230.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/c6xdigio.c (tags: r0_7_74, r0_7_73, r0_7_72),
-         comedi/drivers/cb_das16_cs.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/cb_pcidas.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/cb_pcidas64.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/cb_pcidda.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/cb_pcimdas.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/cb_pcimdda.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/comedi_parport.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/das08_cs.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/das16.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/das16m1.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/das1800.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/das6402.c, comedi/drivers/das800.c (tags: r0_7_73,
-         r0_7_72), comedi/drivers/dt2801.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/dt2811.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/dt2814.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/dt2815.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/dt2817.c (tags: r0_7_74, r0_7_73, r0_7_72),
-         comedi/drivers/dt282x.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/dt3000.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/fl512.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/gsc_hpdi.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/icp_multi.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/icp_multi.h (tags: r0_7_73, r0_7_72),
-         comedi/drivers/ke_counter.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/me4000.h (tags: r0_7_73, r0_7_72),
-         comedi/drivers/me_daq.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/mite.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/mite.h (tags: r0_7_73, r0_7_72),
-         comedi/drivers/mpc624.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/multiq3.c (tags: r0_7_74, r0_7_73, r0_7_72),
-         comedi/drivers/ni_at_a2150.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/ni_atmio.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/ni_atmio16d.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/ni_daq_dio24.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/ni_labpc.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/ni_labpc.h (tags: r0_7_73, r0_7_72),
-         comedi/drivers/ni_labpc_cs.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/ni_mio_cs.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/ni_pcidio.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/ni_pcimio.c (tags: r0_7_72),
-         comedi/drivers/pcl711.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/pcl724.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/pcl725.c (tags: r0_7_74, r0_7_73, r0_7_72),
-         comedi/drivers/pcl726.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/pcl730.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/pcl812.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/pcl816.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/pcl818.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/pcm3724.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/pcm3730.c (tags: r0_7_74, r0_7_73, r0_7_72),
-         comedi/drivers/pcmad.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/pcmda12.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/pcmuio.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/poc.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/quatech_daqp_cs.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/rtd520.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/rti800.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/rti802.c (tags: r0_7_73, r0_7_72),
-         comedi/drivers/s626.c (tags: r0_7_73, r0_7_72),
-         include/linux/comedidev.h (tags: r0_7_72): Cleaned up resource
-         types.  Used unsigned int for IRQs.  Used unsigned long for I/O
-         ports.  Used resource_size_t for physical memory regions.
+         comedi/drivers/amplc_pci230.c, comedi/drivers/c6xdigio.c,
+         comedi/drivers/cb_das16_cs.c, comedi/drivers/cb_pcidas.c,
+         comedi/drivers/cb_pcidas64.c, comedi/drivers/cb_pcidda.c,
+         comedi/drivers/cb_pcimdas.c, comedi/drivers/cb_pcimdda.c,
+         comedi/drivers/comedi_parport.c, comedi/drivers/das08_cs.c,
+         comedi/drivers/das16.c, comedi/drivers/das16m1.c,
+         comedi/drivers/das1800.c, comedi/drivers/das6402.c,
+         comedi/drivers/das800.c, comedi/drivers/dt2801.c,
+         comedi/drivers/dt2811.c, comedi/drivers/dt2814.c,
+         comedi/drivers/dt2815.c, comedi/drivers/dt2817.c,
+         comedi/drivers/dt282x.c, comedi/drivers/dt3000.c,
+         comedi/drivers/fl512.c, comedi/drivers/gsc_hpdi.c,
+         comedi/drivers/icp_multi.c, comedi/drivers/icp_multi.h,
+         comedi/drivers/ke_counter.c, comedi/drivers/me4000.h,
+         comedi/drivers/me_daq.c, comedi/drivers/mite.c,
+         comedi/drivers/mite.h, comedi/drivers/mpc624.c,
+         comedi/drivers/multiq3.c, comedi/drivers/ni_at_a2150.c,
+         comedi/drivers/ni_atmio.c, comedi/drivers/ni_atmio16d.c,
+         comedi/drivers/ni_daq_dio24.c, comedi/drivers/ni_labpc.c,
+         comedi/drivers/ni_labpc.h, comedi/drivers/ni_labpc_cs.c,
+         comedi/drivers/ni_mio_cs.c, comedi/drivers/ni_pcidio.c,
+         comedi/drivers/ni_pcimio.c, comedi/drivers/pcl711.c,
+         comedi/drivers/pcl724.c, comedi/drivers/pcl725.c,
+         comedi/drivers/pcl726.c, comedi/drivers/pcl730.c,
+         comedi/drivers/pcl812.c, comedi/drivers/pcl816.c,
+         comedi/drivers/pcl818.c, comedi/drivers/pcm3724.c,
+         comedi/drivers/pcm3730.c, comedi/drivers/pcmad.c,
+         comedi/drivers/pcmda12.c, comedi/drivers/pcmuio.c,
+         comedi/drivers/poc.c, comedi/drivers/quatech_daqp_cs.c,
+         comedi/drivers/rtd520.c, comedi/drivers/rti800.c,
+         comedi/drivers/rti802.c, comedi/drivers/s626.c,
+         include/linux/comedidev.h: Cleaned up resource types.  Used
+         unsigned int for IRQs.  Used unsigned long for I/O ports.  Used
+         resource_size_t for physical memory regions.
 
 2006-08-07 13:25  abbotti
 
 
 2006-08-07 09:42  abbotti
 
-       * comedi/drivers/dmm32at.c (tags: r0_7_73, r0_7_72): Request
-         resources before using them.
+       * comedi/drivers/dmm32at.c: Request resources before using them.
 
 2006-08-07 06:34  abbotti
 
        * comedi/Makefile.am: Remove Modules.symvers when cleaning as it
          can cause subsequent builds for another kernel to fail.
 
+2006-07-31 22:56  tag r0_7_71
+
 2006-07-31 22:56  fmhess
 
-       * ChangeLog (tags: r0_7_71): Added 0.7.71 changes.
+       * ChangeLog: Added 0.7.71 changes.
 
 2006-07-31 21:47  fmhess
 
-       * configure.ac (tags: r0_7_71): version bump
+       * configure.ac: version bump
 
 2006-07-31 09:14  abbotti
 
        * comedi/drivers/: adl_pci9111.c, adv_pci1710.c, amplc_pc236.c,
-         amplc_pci230.c, cb_pcidas.c, cb_pcidas64.c, ni_pcidio.c (utags:
-         r0_7_71): Fixed compiler warnings about unused variable in the
-         interrupt handler when building for 2.4 kernel.
+         amplc_pci230.c, cb_pcidas.c, cb_pcidas64.c, ni_pcidio.c: Fixed
+         compiler warnings about unused variable in the interrupt handler
+         when building for 2.4 kernel.
 
 2006-07-18 16:51  fmhess
 
-       * comedi/drivers/mite.c (tags: r0_7_71): set mite_phys_addr to zero
-         after releasing io regions
+       * comedi/drivers/mite.c: set mite_phys_addr to zero after releasing
+         io regions
 
 2006-07-17 22:31  fmhess
 
-       * configure.ac, m4/as-linux.m4 (tags: r0_7_73, r0_7_72, r0_7_71):
-         turn pcmcia support on or off by default depending on whether the
-         kernel's pcmcia_driver struct has a probe function pointer.
+       * configure.ac, m4/as-linux.m4: turn pcmcia support on or off by
+         default depending on whether the kernel's pcmcia_driver struct
+         has a probe function pointer.
 
 2006-07-11 22:17  fmhess
 
-       * comedi/comedi_fops.c (tags: r0_7_71): Added check for length of
+       * comedi/comedi_fops.c: Added check for length of
          INSN_CONFIG_SET_RTSI_CLOCK_MODE, (David MacMahon
          <davidm@astro.berkeley.edu>)
 
 2006-07-11 22:16  fmhess
 
-       * comedi/drivers/ni_mio_common.c (tags: r0_7_72, r0_7_71): Fixed
-         number of channels in rtsi subdevice (David MacMahon
-         <davidm@astro.berkeley.edu>)
+       * comedi/drivers/ni_mio_common.c: Fixed number of channels in rtsi
+         subdevice (David MacMahon <davidm@astro.berkeley.edu>)
 
 2006-07-10 11:39  abbotti
 
 
 2006-07-10 06:06  abbotti
 
-       * configure.ac, m4/as-modtool.m4 (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71): Replaced AC_PATH_PROG with AC_PATH_TOOL when detecting
-         the 'strip' program.  This is so the correct 'strip' is used when
-         cross-compiling.
+       * configure.ac, m4/as-modtool.m4: Replaced AC_PATH_PROG with
+         AC_PATH_TOOL when detecting the 'strip' program.  This is so the
+         correct 'strip' is used when cross-compiling.
 
 2006-07-06 12:06  abbotti
 
 
 2006-07-05 07:30  abbotti
 
-       * m4/rtai.m4 (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71): Applied
-         patch from Ben Gardiner (blg at mast dot queensu dot ca):
+       * m4/rtai.m4: Applied patch from Ben Gardiner (blg at mast dot
+         queensu dot ca):
 
          It appears as though the changes were applied only to
          configure.ac.
 
 2006-06-21 12:31  abbotti
 
-       * comedi/drivers/: fl512.c, poc.c (utags: r0_7_71): Fix gcc-4.1
-         warnings (undefined macro in #if).
+       * comedi/drivers/: fl512.c, poc.c: Fix gcc-4.1 warnings (undefined
+         macro in #if).
 
 2006-06-21 12:30  abbotti
 
-       * comedi/drivers/pcl816.c (tags: r0_7_71): Fix gcc-4.1 warnings
-         (uninitialized variables).
+       * comedi/drivers/pcl816.c: Fix gcc-4.1 warnings (uninitialized
+         variables).
 
 2006-06-21 12:28  abbotti
 
-       * comedi/drivers/ni_at_a2150.c (tags: r0_7_71): Fixed gcc-4.1
-         warnings (operation may be undefined).
+       * comedi/drivers/ni_at_a2150.c: Fixed gcc-4.1 warnings (operation
+         may be undefined).
 
 2006-06-21 12:27  abbotti
 
-       * comedi/drivers/mpc624.c (tags: r0_7_71): Fix gcc-4.1 warnings
-         (unused variable, printk format specifier mismatch).
+       * comedi/drivers/mpc624.c: Fix gcc-4.1 warnings (unused variable,
+         printk format specifier mismatch).
 
 2006-06-21 12:09  abbotti
 
-       * comedi/drivers/: dt9812.c (tags: r0_7_73, r0_7_72), pcl812.c
-         (utags: r0_7_71): Fix gcc-4.1 warnings (uninitialized variables).
+       * comedi/drivers/: dt9812.c, pcl812.c: Fix gcc-4.1 warnings
+         (uninitialized variables).
 
 2006-06-21 12:07  abbotti
 
-       * comedi/drivers/: cb_das16_cs.c, das08_cs.c (utags: r0_7_71): Fix
-         gcc-4.1 warnings (uninitialized variable).  The variable is
-         question has been removed, as it is only used on an unreachable
-         path.  Also, don't bother calling pcmcia_release_window() as
-         there is no matching call to pcmcia_request_window().
+       * comedi/drivers/: cb_das16_cs.c, das08_cs.c: Fix gcc-4.1 warnings
+         (uninitialized variable).  The variable is question has been
+         removed, as it is only used on an unreachable path.  Also, don't
+         bother calling pcmcia_release_window() as there is no matching
+         call to pcmcia_request_window().
 
 2006-06-19 21:14  fmhess
 
-       * INSTALL (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71): Made a few
-         updates to install instructions.
+       * INSTALL: Made a few updates to install instructions.
 
 2006-06-19 21:05  fmhess
 
-       * comedi/drivers/: das08_cs.c, mite.c, ni_daq_dio24.c (tags:
-         r0_7_71), ni_labpc_cs.c (tags: r0_7_71), quatech_daqp_cs.c (tags:
-         r0_7_71): Marked some initialization/cleanup functions with
-         __init/__exit.
+       * comedi/drivers/: das08_cs.c, mite.c, ni_daq_dio24.c,
+         ni_labpc_cs.c, quatech_daqp_cs.c: Marked some
+         initialization/cleanup functions with __init/__exit.
 
 2006-06-19 20:57  fmhess
 
 
 2006-06-18 21:21  fmhess
 
-       * comedi/drivers/pcm3724.c (tags: r0_7_71): Patch from
-         abbotti@mev.co.uk (Ian Abbott):
+       * comedi/drivers/pcm3724.c: Patch from abbotti@mev.co.uk (Ian
+         Abbott):
 
          The pcm3724 driver is still using the deprecated check_region()
          call.  Also, it doesn't check if things were allocated properly
 
 2006-06-18 21:19  fmhess
 
-       * comedi/drivers/: cb_pcidas64.c, daqboard2000.c (tags: r0_7_73,
-         r0_7_72, r0_7_71), dt3000.c (tags: r0_7_71), gsc_hpdi.c (tags:
-         r0_7_71), me_daq.c (tags: r0_7_71), mite.c, rtd520.c (tags:
-         r0_7_71), s626.c (tags: r0_7_71): Patch from abbotti@mev.co.uk
-         (Ian Abbott):
+       * comedi/drivers/: cb_pcidas64.c, daqboard2000.c, dt3000.c,
+         gsc_hpdi.c, me_daq.c, mite.c, rtd520.c, s626.c: Patch from
+         abbotti@mev.co.uk (Ian Abbott):
 
          The following driver files call ioremap() but do not check if the
          return value is NULL:
 
 2006-06-18 21:12  fmhess
 
-       * comedi/drivers/: Kbuild (tags: r0_7_71), Makefile.am (tags:
-         r0_7_71), adl_pci9118.c (tags: r0_7_71), adv_pci1710.c,
-         amcc_s5933.h (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71): patch
-         from Ian Abbott <abbotti@mev.co.uk>:
+       * comedi/drivers/: Kbuild, Makefile.am, adl_pci9118.c,
+         adv_pci1710.c, amcc_s5933.h: patch from Ian Abbott
+         <abbotti@mev.co.uk>:
 
          I have a patch that changes the adl_pci9118 and adv_pci1710
          drivers.  It mimics their old behaviour of searching for an
 2006-06-11 21:10  fmhess
 
        * comedi/comedi_fops.c, comedi/drivers/cb_das16_cs.c,
-         comedi/drivers/comedi_bond.c (tags: r0_7_73, r0_7_72, r0_7_71),
-         comedi/drivers/das08_cs.c, comedi/drivers/ni_daq_dio24.c,
-         comedi/drivers/ni_labpc_cs.c, comedi/drivers/quatech_daqp_cs.c,
-         include/linux/module.h (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71), include/linux/moduleparam.h (tags: r0_7_74, r0_7_73,
-         r0_7_72, r0_7_71): Patch from abbotti@mev.co.uk (Ian Abbott):
+         comedi/drivers/comedi_bond.c, comedi/drivers/das08_cs.c,
+         comedi/drivers/ni_daq_dio24.c, comedi/drivers/ni_labpc_cs.c,
+         comedi/drivers/quatech_daqp_cs.c, include/linux/module.h,
+         include/linux/moduleparam.h: Patch from abbotti@mev.co.uk (Ian
+         Abbott):
 
          The (few) module parameters used by comedi (for debugging and for
          specifying irq_mask or irq_list for some PCMCIA drivers) haven't
 
 2006-06-11 19:33  fmhess
 
-       * comedi/drivers/: adl_pci6208.c (tags: r0_7_71), adl_pci7432.c
-         (tags: r0_7_73, r0_7_72, r0_7_71), adl_pci8164.c (tags: r0_7_73,
-         r0_7_72, r0_7_71), adl_pci9111.c, adv_pci_dio.c (tags: r0_7_71),
-         amplc_dio200.c (tags: r0_7_71), amplc_pc236.c, amplc_pc263.c
-         (tags: r0_7_71), amplc_pci224.c (tags: r0_7_71), amplc_pci230.c,
-         cb_pcidas.c, cb_pcidas64.c, cb_pcidda.c (tags: r0_7_71),
-         cb_pcimdas.c (tags: r0_7_71), cb_pcimdda.c (tags: r0_7_71),
-         contec_pci_dio.c (tags: r0_7_73, r0_7_72, r0_7_71),
-         daqboard2000.c, das08.c (tags: r0_7_73, r0_7_72, r0_7_71),
-         dt3000.c, gsc_hpdi.c, ke_counter.c (tags: r0_7_71), me4000.c
-         (tags: r0_7_73, r0_7_72, r0_7_71), me_daq.c, rtd520.c, s626.c:
-         More pci fixes.
+       * comedi/drivers/: adl_pci6208.c, adl_pci7432.c, adl_pci8164.c,
+         adl_pci9111.c, adv_pci_dio.c, amplc_dio200.c, amplc_pc236.c,
+         amplc_pc263.c, amplc_pci224.c, amplc_pci230.c, cb_pcidas.c,
+         cb_pcidas64.c, cb_pcidda.c, cb_pcimdas.c, cb_pcimdda.c,
+         contec_pci_dio.c, daqboard2000.c, das08.c, dt3000.c, gsc_hpdi.c,
+         ke_counter.c, me4000.c, me_daq.c, rtd520.c, s626.c: More pci
+         fixes.
 
 2006-06-11 17:34  fmhess
 
          amcc_s5933.c, amplc_dio200.c, amplc_pc236.c, amplc_pc263.c,
          amplc_pci224.c, amplc_pci230.c, cb_pcidas.c, cb_pcidas64.c,
          cb_pcidda.c, cb_pcimdas.c, cb_pcimdda.c, contec_pci_dio.c,
-         daqboard2000.c, das08.c, dt3000.c, gsc_hpdi.c, icp_multi.c (tags:
-         r0_7_71), icp_multi.h (tags: r0_7_71), ke_counter.c, me4000.c,
-         me_daq.c, mite.c, rtd520.c, s626.c: Patch from abbotti@mev.co.uk
-         (Ian Abbott).  Note, I am planning to revert/alter parts of this
-         patch shortly, I am commiting the original patch so it is clear
-         what I changed.
+         daqboard2000.c, das08.c, dt3000.c, gsc_hpdi.c, icp_multi.c,
+         icp_multi.h, ke_counter.c, me4000.c, me_daq.c, mite.c, rtd520.c,
+         s626.c: Patch from abbotti@mev.co.uk (Ian Abbott).  Note, I am
+         planning to revert/alter parts of this patch shortly, I am
+         commiting the original patch so it is clear what I changed.
 
          I've been through the PCI code of all the drivers (apart from the
          ones in the addi_data directory) to apply the following rules:
 2006-06-11 17:05  fmhess
 
        * comedi/drivers/: cb_das16_cs.c, das08_cs.c, ni_daq_dio24.c,
-         ni_mio_cs.c (tags: r0_7_71), quatech_daqp_cs.c: Got rid of
-         obsolete IRQ_INFO2_VALID
+         ni_mio_cs.c, quatech_daqp_cs.c: Got rid of obsolete
+         IRQ_INFO2_VALID
 
 2006-06-11 17:02  fmhess
 
        * comedi/drivers/cb_das16_cs.c, comedi/drivers/das08_cs.c,
          comedi/drivers/dt9812.c, comedi/drivers/ni_daq_dio24.c,
          comedi/drivers/ni_labpc_cs.c, comedi/drivers/ni_mio_cs.c,
-         comedi/drivers/quatech_daqp_cs.c, comedi/drivers/usbdux.c (tags:
-         r0_7_73, r0_7_72, r0_7_71), comedi/drivers/usbduxfast.c (tags:
-         r0_7_73, r0_7_72, r0_7_71), include/linux/usb.h (tags: r0_7_74,
-         r0_7_73, r0_7_72, r0_7_71): Patch from abbotti@mev.co.uk (Ian
-         Abbott) which ports pcmcia drivers to 2.6.16 api.  It also deals
-         with the dropping of the "owner" member from the usb driver
-         struct in 2.6.16.  I will shortly drop support for pcmcia on
-         kernels older than 2.6.16.
+         comedi/drivers/quatech_daqp_cs.c, comedi/drivers/usbdux.c,
+         comedi/drivers/usbduxfast.c, include/linux/usb.h: Patch from
+         abbotti@mev.co.uk (Ian Abbott) which ports pcmcia drivers to
+         2.6.16 api.  It also deals with the dropping of the "owner"
+         member from the usb driver struct in 2.6.16.  I will shortly drop
+         support for pcmcia on kernels older than 2.6.16.
 
 2006-05-06 11:43  fmhess
 
 
 2006-05-01 21:11  fmhess
 
-       * comedi/drivers/ni_pcimio.c (tags: r0_7_71): Update to
-         documentation comments from terry1@beam.ltd.uk (Terry Barnaby)
+       * comedi/drivers/ni_pcimio.c: Update to documentation comments from
+         terry1@beam.ltd.uk (Terry Barnaby)
 
 2006-04-18 22:10  fmhess
 
 
 2006-04-18 20:10  fmhess
 
-       * comedi/drivers/pcmuio.c (tags: r0_7_71): Patch from
-         calin@ajvar.org (Calin A. Culianu):
+       * comedi/drivers/pcmuio.c: Patch from calin@ajvar.org (Calin A.
+         Culianu):
 
          I modified the driver to more correctly reflect the physical
          connectors on the PCMUIO board.  Basically rather than have
 
 2006-03-06 21:44  fmhess
 
-       * comedi/drivers/ni_mio_common.c, comedi/drivers/ni_stc.h (tags:
-         r0_7_72, r0_7_71), include/linux/comedi.h (tags: r0_7_73,
-         r0_7_72, r0_7_71): Added INSN_CONFIG_GET_PWM_OUTPUT config insn.
+       * comedi/drivers/ni_mio_common.c, comedi/drivers/ni_stc.h,
+         include/linux/comedi.h: Added INSN_CONFIG_GET_PWM_OUTPUT config
+         insn.
 
 2006-03-06 21:37  fmhess
 
-       * Documentation/comedi/insn_config (tags: r0_7_73, r0_7_72,
-         r0_7_71), comedi/drivers/ni_mio_common.c: Changed
-         INSN_CONFIG_PWM_OUTPUT so the rounding mode for the up and down
-         times can be set independently.
+       * Documentation/comedi/insn_config, comedi/drivers/ni_mio_common.c:
+         Changed INSN_CONFIG_PWM_OUTPUT so the rounding mode for the up
+         and down times can be set independently.
 
 2006-03-02 19:58  fmhess
 
 
 2006-03-01 20:58  fmhess
 
-       * comedi/Makefile.am (tags: r0_7_71): Removed stray quotes from
-         clean and install kbuild targets
+       * comedi/Makefile.am: Removed stray quotes from clean and install
+         kbuild targets
 
 2006-02-22 19:02  fmhess
 
 
 2006-02-22 18:57  fmhess
 
-       * comedi/drivers/: Kbuild, addi-data/Makefile.am (tags: r0_7_71):
-         Disabling addi-data driver until it's floating point problems get
-         fixed.
+       * comedi/drivers/: Kbuild, addi-data/Makefile.am: Disabling
+         addi-data driver until it's floating point problems get fixed.
 
 2006-02-22 18:38  fmhess
 
 
 2006-02-20 09:51  fmhess
 
-       * comedi/drivers/comedi_parport.c (tags: r0_7_71): Fixed read of
-         parallel port data lines, as reported by Franco Minutiello
+       * comedi/drivers/comedi_parport.c: Fixed read of parallel port data
+         lines, as reported by Franco Minutiello
          <franco.minutiello@darts.it>
 
 2006-02-05 22:21  fmhess
 
-       * configure.ac, comedi/Kbuild (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71), comedi/Makefile.am, comedi/drivers/Kbuild,
-         comedi/drivers/Makefile.am, comedi/drivers/addi-data/Makefile.am,
-         comedi/kcomedilib/Makefile.am (tags: r0_7_71): --enable-kbuild
-         option of configure script works now.
+       * configure.ac, comedi/Kbuild, comedi/Makefile.am,
+         comedi/drivers/Kbuild, comedi/drivers/Makefile.am,
+         comedi/drivers/addi-data/Makefile.am,
+         comedi/kcomedilib/Makefile.am: --enable-kbuild option of
+         configure script works now.
 
 2006-02-05 18:44  fmhess
 
        * configure.ac, comedi/Kbuild, comedi/drivers/Kbuild,
-         comedi/drivers/addi-data/Kbuild (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71), comedi/kcomedilib/Kbuild (tags: r0_7_74, r0_7_73,
-         r0_7_72, r0_7_71): Beginnings of support for kbuild with recent
-         2.6 kernels.
+         comedi/drivers/addi-data/Kbuild, comedi/kcomedilib/Kbuild:
+         Beginnings of support for kbuild with recent 2.6 kernels.
 
 2006-02-05 11:20  fmhess
 
-       * comedi/drivers/c6xdigio.c (tags: r0_7_71): Fixed missing
-         MODULE_LICENSE by using COMEDI_INITCLEANUP().
+       * comedi/drivers/c6xdigio.c: Fixed missing MODULE_LICENSE by using
+         COMEDI_INITCLEANUP().
 
 2006-02-05 11:15  fmhess
 
 
 2006-01-28 16:28  fmhess
 
-       * comedi/drivers/ni_atmio.c (tags: r0_7_71): Reenabled isapnp
-         support, and ported it to 2.6 kernels.  Doesn't work on 2.4
-         kernels any more.
+       * comedi/drivers/ni_atmio.c: Reenabled isapnp support, and ported
+         it to 2.6 kernels.  Doesn't work on 2.4 kernels any more.
 
 2006-01-28 16:27  fmhess
 
-       * include/linux/: isapnp.h, pnp.h (utags: r0_7_71, r0_7_72,
-         r0_7_73, r0_7_74): More compatilbility wrappers to let ni_atmio
-         driver using 2.6 isapnp support compile (but isapnp won't
-         actually work) on 2.4 kernels.
+       * include/linux/: isapnp.h, pnp.h: More compatilbility wrappers to
+         let ni_atmio driver using 2.6 isapnp support compile (but isapnp
+         won't actually work) on 2.4 kernels.
 
 2006-01-28 12:39  fmhess
 
 
 2006-01-28 12:36  fmhess
 
-       * include/linux/: kernel.h (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71), mod_devicetable.h (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71), pnp.h, usb.h: Added some more compatibility wrappers
-         for 2.4 kernels.
+       * include/linux/: kernel.h, mod_devicetable.h, pnp.h, usb.h: Added
+         some more compatibility wrappers for 2.4 kernels.
 
 2006-01-28 12:34  fmhess
 
 
 2006-01-28 10:19  fmhess
 
-       * comedi/drivers/: Makefile.am, pcmda12.c (tags: r0_7_71): Added
-         new driver for Winsystems PCM DA-12 AO board from calin@ajvar.org
-         (Calin A. Culianu).
+       * comedi/drivers/: Makefile.am, pcmda12.c: Added new driver for
+         Winsystems PCM DA-12 AO board from calin@ajvar.org (Calin A.
+         Culianu).
 
 2006-01-28 10:03  fmhess
 
 
 2006-01-15 15:34  fmhess
 
-       * include/linux/device.h (tags: r0_7_73, r0_7_72, r0_7_71): Added
-         CLASS_DEVICE_CREATE compaitibility macro, based on patch from
-         abbotti@mev.co.uk (Ian Abbott).
+       * include/linux/device.h: Added CLASS_DEVICE_CREATE compaitibility
+         macro, based on patch from abbotti@mev.co.uk (Ian Abbott).
 
 2006-01-15 15:10  fmhess
 
-       * include/linux/pci_ids.h (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71): Added compatibility header for linux/pci_ids.h, which
-         fixes compile against 2.6.15 kernels.
+       * include/linux/pci_ids.h: Added compatibility header for
+         linux/pci_ids.h, which fixes compile against 2.6.15 kernels.
 
 2006-01-15 15:00  fmhess
 
 
 2006-01-02 16:53  fmhess
 
-       * comedi/drivers/: mite.c, mite.h (tags: r0_7_71), ni_mio_common.c,
-         ni_pcimio.c, ni_stc.h: Added support for reading eeprom on
-         m-series boards.  Added partial support for CR_ALT_SOURCE with
-         m-series boards.
+       * comedi/drivers/: mite.c, mite.h, ni_mio_common.c, ni_pcimio.c,
+         ni_stc.h: Added support for reading eeprom on m-series boards.
+         Added partial support for CR_ALT_SOURCE with m-series boards.
 
 2006-01-01 20:11  fmhess
 
 
 2005-12-04 20:05  fmhess
 
-       * include/linux/kref.h (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71):
-         Patch from abbotti@mev.co.uk (Ian Abbott):
+       * include/linux/kref.h: Patch from abbotti@mev.co.uk (Ian Abbott):
 
          KREF_PUT can be simplified for 2.6.12 upwards - it just needs to
          call kref_put and pass on the return value.
 
 2005-11-23 17:51  fmhess
 
-       * comedi/drivers/ni_660x.c (tags: r0_7_73, r0_7_72, r0_7_71): Patch
-         from Dave <dfelson.celson@virgin.net>:
+       * comedi/drivers/ni_660x.c: Patch from Dave
+         <dfelson.celson@virgin.net>:
 
          Tried the NI 6602 in single pulse, surprised (!) the  case
          INSN_CONFIG_GPCT_SINGLE_PULSE_GENERATOR:
 
 2005-11-23 17:48  fmhess
 
-       * include/asm/pgtable.h (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71):
-         pud_t was introduced in kernel 2.6.11
+       * include/asm/pgtable.h: pud_t was introduced in kernel 2.6.11
 
 2005-11-23 07:59  fmhess
 
 
 2005-11-20 20:16  fmhess
 
-       * comedi/drivers/: Makefile.am, dt9812.c, dt9812.h (tags: r0_7_74,
-         r0_7_73, r0_7_72, r0_7_71): New driver from
+       * comedi/drivers/: Makefile.am, dt9812.c, dt9812.h: New driver from
          anders.blomdell@control.lth.se (Anders Blomdell):
 
          This driver works, but bulk transfers not implemented. Might be a
 
 2005-11-20 19:24  fmhess
 
-       * comedi/drivers/serial2002.c (tags: r0_7_73, r0_7_72, r0_7_71):
-         Patch from anders.blomdell@control.lth.se (Anders Blomdell):
+       * comedi/drivers/serial2002.c: Patch from
+         anders.blomdell@control.lth.se (Anders Blomdell):
 
          make poll point to the right subfield
 
 
 2005-11-01 19:39  fmhess
 
-       * comedi/drivers/: daqboard2000.c, multiq3.c (tags: r0_7_71),
-         serial2002.c: Patch from anders.blomdell@control.lth.se (Anders
-         Blomdell):
+       * comedi/drivers/: daqboard2000.c, multiq3.c, serial2002.c: Patch
+         from anders.blomdell@control.lth.se (Anders Blomdell):
 
          daqboard2000: fixed bug where (sometimes) values were left behind
          in the FIFO multiq3: start encoder counting from middle of range
 
 2005-10-16 17:45  fmhess
 
-       * comedi/drivers/8253.h (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71),
-         comedi/drivers/amplc_dio200.c, include/linux/comedi.h: Patch from
-         abbotti@mev.co.uk (Ian Abbott):
+       * comedi/drivers/8253.h, comedi/drivers/amplc_dio200.c,
+         include/linux/comedi.h: Patch from abbotti@mev.co.uk (Ian
+         Abbott):
 
          I have added support for the following additional Amplicon 200
          series boards to the amplc_dio200 driver: PC212E, PC214E, PC215E,
 
 2005-10-07 12:21  ds
 
-       * Makefile.am (tags: r0_7_71): Don't dist removed files.  Tell
-         people to run depmod instead of doing it for them (incorrectly).
+       * Makefile.am: Don't dist removed files.  Tell people to run depmod
+         instead of doing it for them (incorrectly).
 
 2005-10-07 01:08  ds
 
-       * Contributors (tags: r0_7_71): Convert to UTF-8
+       * Contributors: Convert to UTF-8
 
 2005-10-07 01:08  ds
 
-       * comedi/drivers/: acl7225b.c (tags: r0_7_73, r0_7_72, r0_7_71),
-         amplc_pci230.c, dmm32at.c (tags: r0_7_71), dt282x.c (tags:
-         r0_7_71), ni_atmio.c, pcl730.c (tags: r0_7_71), s626.c: Convert
-         to UTF-8.  Fix some warnings.
+       * comedi/drivers/: acl7225b.c, amplc_pci230.c, dmm32at.c, dt282x.c,
+         ni_atmio.c, pcl730.c, s626.c: Convert to UTF-8.  Fix some
+         warnings.
 
 2005-10-07 01:06  ds
 
-       * comedi/drivers/addi-data/: APCI1710_82x54.c (tags: r0_7_74),
-         APCI1710_Chrono.c (tags: r0_7_74), APCI1710_Chrono.h (tags:
-         r0_7_74), APCI1710_Dig_io.c (tags: r0_7_74), APCI1710_Dig_io.h
-         (tags: r0_7_74), APCI1710_INCCPT.c (tags: r0_7_74),
-         APCI1710_INCCPT.h (tags: r0_7_74), APCI1710_Inp_cpt.c (tags:
-         r0_7_74), APCI1710_Inp_cpt.h (tags: r0_7_74), APCI1710_Pwm.c
-         (tags: r0_7_74), APCI1710_Pwm.h (tags: r0_7_74), APCI1710_Ssi.c
-         (tags: r0_7_74), APCI1710_Ssi.h (tags: r0_7_74), APCI1710_Tor.c
-         (tags: r0_7_74), APCI1710_Tor.h (tags: r0_7_74), APCI1710_Ttl.c
-         (tags: r0_7_74), APCI1710_Ttl.h (tags: r0_7_74),
-         addi_amcc_S5920.c (tags: r0_7_74), addi_amcc_S5920.h (tags:
-         r0_7_74), addi_common.c, addi_eeprom.c (tags: r0_7_74),
-         hwdrv_APCI1710.c (tags: r0_7_74), hwdrv_APCI1710.h (tags:
-         r0_7_74), hwdrv_apci035.c (tags: r0_7_74), hwdrv_apci035.h (tags:
-         r0_7_74), hwdrv_apci1032.c (tags: r0_7_74), hwdrv_apci1500.c
-         (tags: r0_7_74), hwdrv_apci1516.c (tags: r0_7_74),
-         hwdrv_apci1516.h (tags: r0_7_74), hwdrv_apci1564.c (tags:
-         r0_7_74), hwdrv_apci1564.h (tags: r0_7_74), hwdrv_apci16xx.c
-         (tags: r0_7_74), hwdrv_apci16xx.h (tags: r0_7_74),
-         hwdrv_apci2016.c (tags: r0_7_74), hwdrv_apci2016.h (tags:
-         r0_7_74), hwdrv_apci2032.c (tags: r0_7_74), hwdrv_apci2032.h
-         (tags: r0_7_74), hwdrv_apci2200.c (tags: r0_7_74),
-         hwdrv_apci3200.c (tags: r0_7_74), hwdrv_apci3200.h (tags:
-         r0_7_74), hwdrv_apci3501.c (tags: r0_7_74), hwdrv_apci3xxx.h
-         (tags: r0_7_74) (utags: r0_7_71, r0_7_72, r0_7_73): Convert from
-         DOS to unix.  Convert to UTF-8.  Minor warning fixes.
+       * comedi/drivers/addi-data/: APCI1710_82x54.c, APCI1710_Chrono.c,
+         APCI1710_Chrono.h, APCI1710_Dig_io.c, APCI1710_Dig_io.h,
+         APCI1710_INCCPT.c, APCI1710_INCCPT.h, APCI1710_Inp_cpt.c,
+         APCI1710_Inp_cpt.h, APCI1710_Pwm.c, APCI1710_Pwm.h,
+         APCI1710_Ssi.c, APCI1710_Ssi.h, APCI1710_Tor.c, APCI1710_Tor.h,
+         APCI1710_Ttl.c, APCI1710_Ttl.h, addi_amcc_S5920.c,
+         addi_amcc_S5920.h, addi_common.c, addi_eeprom.c,
+         hwdrv_APCI1710.c, hwdrv_APCI1710.h, hwdrv_apci035.c,
+         hwdrv_apci035.h, hwdrv_apci1032.c, hwdrv_apci1500.c,
+         hwdrv_apci1516.c, hwdrv_apci1516.h, hwdrv_apci1564.c,
+         hwdrv_apci1564.h, hwdrv_apci16xx.c, hwdrv_apci16xx.h,
+         hwdrv_apci2016.c, hwdrv_apci2016.h, hwdrv_apci2032.c,
+         hwdrv_apci2032.h, hwdrv_apci2200.c, hwdrv_apci3200.c,
+         hwdrv_apci3200.h, hwdrv_apci3501.c, hwdrv_apci3xxx.h: Convert
+         from DOS to unix.  Convert to UTF-8.  Minor warning fixes.
 
 2005-10-07 01:04  ds
 
-       * include/linux/config.h (tags: r0_7_73, r0_7_72, r0_7_71),
-         include/linux/fs.h, include/linux/highmem.h,
-         include/linux/init.h, include/linux/ioport.h,
-         include/linux/isapnp.h, include/linux/kdev_t.h,
-         include/linux/kmod.h, include/linux/mm.h (tags: r0_7_73, r0_7_72,
-         r0_7_71), include/linux/module.h, include/linux/pci.h (tags:
-         r0_7_71), include/linux/poll.h, include/linux/sched.h (tags:
-         r0_7_74, r0_7_73, r0_7_72, r0_7_71), include/linux/slab.h,
-         include/linux/spinlock.h, include/linux/timer.h,
-         include/linux/vmalloc.h, include/linux/wait.h,
-         comedi/comedi_fops.c, comedi/comedi_ksyms.c (tags: r0_7_73,
-         r0_7_72, r0_7_71), comedi/drivers.c (tags: r0_7_73, r0_7_72,
-         r0_7_71), comedi/proc.c (tags: r0_7_73, r0_7_72, r0_7_71): Remove
+       * include/linux/config.h, include/linux/fs.h,
+         include/linux/highmem.h, include/linux/init.h,
+         include/linux/ioport.h, include/linux/isapnp.h,
+         include/linux/kdev_t.h, include/linux/kmod.h, include/linux/mm.h,
+         include/linux/module.h, include/linux/pci.h,
+         include/linux/poll.h, include/linux/sched.h,
+         include/linux/slab.h, include/linux/spinlock.h,
+         include/linux/timer.h, include/linux/vmalloc.h,
+         include/linux/wait.h, comedi/comedi_fops.c,
+         comedi/comedi_ksyms.c, comedi/drivers.c, comedi/proc.c: Remove
          compatibility for 2.0 and 2.2
 
 2005-10-06 13:57  ds
 
 2005-10-06 13:47  ds
 
-       * include/linux/time.h (tags: r0_7_73, r0_7_72, r0_7_71): copy from
-         0.7 branch
+       * include/linux/time.h: copy from 0.7 branch
 
 2005-10-06 13:42  ds
 
        * ChangeLog, configure.ac, comedi/comedi_fops.c, comedi/drivers.c,
-         comedi/drivers/8253.h, comedi/drivers/8255.c (tags: r0_7_71),
+         comedi/drivers/8253.h, comedi/drivers/8255.c,
          comedi/drivers/Makefile.am, comedi/drivers/acl7225b.c,
          comedi/drivers/adl_pci6208.c, comedi/drivers/adl_pci9118.c,
          comedi/drivers/adv_pci1710.c, comedi/drivers/adv_pci_dio.c,
          comedi/drivers/cb_das16_cs.c, comedi/drivers/cb_pcidas.c,
          comedi/drivers/cb_pcidas64.c, comedi/drivers/comedi_parport.c,
          comedi/drivers/daqboard2000.c, comedi/drivers/das08.c,
-         comedi/drivers/das08_cs.c, comedi/drivers/das16.c (tags:
-         r0_7_71), comedi/drivers/das16m1.c (tags: r0_7_71),
-         comedi/drivers/das1800.c (tags: r0_7_71),
-         comedi/drivers/das6402.c (tags: r0_7_71), comedi/drivers/das800.c
-         (tags: r0_7_71), comedi/drivers/dmm32at.c,
-         comedi/drivers/dt2801.c (tags: r0_7_71), comedi/drivers/dt2811.c
-         (tags: r0_7_71), comedi/drivers/dt2814.c (tags: r0_7_71),
-         comedi/drivers/dt2815.c (tags: r0_7_71), comedi/drivers/dt2817.c
-         (tags: r0_7_71), comedi/drivers/dt282x.c,
-         comedi/drivers/dt3000.c, comedi/drivers/fl512.c,
-         comedi/drivers/gsc_hpdi.c, comedi/drivers/icp_multi.c,
-         comedi/drivers/ii_pci20kc.c (tags: r0_7_73, r0_7_72, r0_7_71),
+         comedi/drivers/das08_cs.c, comedi/drivers/das16.c,
+         comedi/drivers/das16m1.c, comedi/drivers/das1800.c,
+         comedi/drivers/das6402.c, comedi/drivers/das800.c,
+         comedi/drivers/dmm32at.c, comedi/drivers/dt2801.c,
+         comedi/drivers/dt2811.c, comedi/drivers/dt2814.c,
+         comedi/drivers/dt2815.c, comedi/drivers/dt2817.c,
+         comedi/drivers/dt282x.c, comedi/drivers/dt3000.c,
+         comedi/drivers/fl512.c, comedi/drivers/gsc_hpdi.c,
+         comedi/drivers/icp_multi.c, comedi/drivers/ii_pci20kc.c,
          comedi/drivers/me_daq.c, comedi/drivers/mite.c,
          comedi/drivers/mite.h, comedi/drivers/multiq3.c,
-         comedi/drivers/ni_6527.c (tags: r0_7_73, r0_7_72, r0_7_71),
-         comedi/drivers/ni_660x.c, comedi/drivers/ni_670x.c (tags:
-         r0_7_73, r0_7_72, r0_7_71), comedi/drivers/ni_at_a2150.c,
-         comedi/drivers/ni_at_ao.c (tags: r0_7_73, r0_7_72, r0_7_71),
-         comedi/drivers/ni_atmio.c, comedi/drivers/ni_atmio16d.c (tags:
-         r0_7_71), comedi/drivers/ni_daq_dio24.c,
-         comedi/drivers/ni_labpc.c (tags: r0_7_71),
-         comedi/drivers/ni_labpc_cs.c, comedi/drivers/ni_mio_common.c,
-         comedi/drivers/ni_mio_cs.c, comedi/drivers/ni_pcidio.c,
-         comedi/drivers/ni_pcimio.c, comedi/drivers/ni_stc.h,
-         comedi/drivers/pcl711.c (tags: r0_7_71), comedi/drivers/pcl724.c
-         (tags: r0_7_71), comedi/drivers/pcl725.c (tags: r0_7_71),
-         comedi/drivers/pcl726.c (tags: r0_7_71), comedi/drivers/pcl730.c,
+         comedi/drivers/ni_6527.c, comedi/drivers/ni_660x.c,
+         comedi/drivers/ni_670x.c, comedi/drivers/ni_at_a2150.c,
+         comedi/drivers/ni_at_ao.c, comedi/drivers/ni_atmio.c,
+         comedi/drivers/ni_atmio16d.c, comedi/drivers/ni_daq_dio24.c,
+         comedi/drivers/ni_labpc.c, comedi/drivers/ni_labpc_cs.c,
+         comedi/drivers/ni_mio_common.c, comedi/drivers/ni_mio_cs.c,
+         comedi/drivers/ni_pcidio.c, comedi/drivers/ni_pcimio.c,
+         comedi/drivers/ni_stc.h, comedi/drivers/pcl711.c,
+         comedi/drivers/pcl724.c, comedi/drivers/pcl725.c,
+         comedi/drivers/pcl726.c, comedi/drivers/pcl730.c,
          comedi/drivers/pcl812.c, comedi/drivers/pcl816.c,
-         comedi/drivers/pcl818.c (tags: r0_7_71), comedi/drivers/pcm3730.c
-         (tags: r0_7_71), comedi/drivers/pcmad.c (tags: r0_7_71),
-         comedi/drivers/plx9080.h (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71), comedi/drivers/poc.c, comedi/drivers/quatech_daqp_cs.c,
-         comedi/drivers/rti800.c (tags: r0_7_71), comedi/drivers/rti802.c
-         (tags: r0_7_71), comedi/drivers/s626.c, comedi/drivers/s626.h
-         (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71),
+         comedi/drivers/pcl818.c, comedi/drivers/pcm3730.c,
+         comedi/drivers/pcmad.c, comedi/drivers/plx9080.h,
+         comedi/drivers/poc.c, comedi/drivers/quatech_daqp_cs.c,
+         comedi/drivers/rti800.c, comedi/drivers/rti802.c,
+         comedi/drivers/s626.c, comedi/drivers/s626.h,
          comedi/drivers/usbdux.c, comedi/drivers/usbduxfast.c,
          comedi/drivers/addi-data/APCI1710_82x54.c,
-         comedi/drivers/addi-data/APCI1710_82x54.h (tags: r0_7_74,
-         r0_7_73, r0_7_72, r0_7_71),
+         comedi/drivers/addi-data/APCI1710_82x54.h,
          comedi/drivers/addi-data/APCI1710_Chrono.c,
          comedi/drivers/addi-data/APCI1710_Chrono.h,
          comedi/drivers/addi-data/APCI1710_Dig_io.c,
          comedi/drivers/addi-data/APCI1710_Ttl.h,
          comedi/drivers/addi-data/addi_amcc_S5920.c,
          comedi/drivers/addi-data/addi_amcc_S5920.h,
-         comedi/drivers/addi-data/addi_amcc_s5933.h (tags: r0_7_74,
-         r0_7_73, r0_7_72, r0_7_71),
+         comedi/drivers/addi-data/addi_amcc_s5933.h,
          comedi/drivers/addi-data/addi_common.c,
-         comedi/drivers/addi-data/addi_common.h (tags: r0_7_74, r0_7_73,
-         r0_7_72, r0_7_71), comedi/drivers/addi-data/addi_eeprom.c,
+         comedi/drivers/addi-data/addi_common.h,
+         comedi/drivers/addi-data/addi_eeprom.c,
          comedi/drivers/addi-data/hwdrv_APCI1710.c,
          comedi/drivers/addi-data/hwdrv_APCI1710.h,
          comedi/drivers/addi-data/hwdrv_apci035.c,
          comedi/drivers/addi-data/hwdrv_apci035.h,
          comedi/drivers/addi-data/hwdrv_apci1032.c,
-         comedi/drivers/addi-data/hwdrv_apci1032.h (tags: r0_7_74,
-         r0_7_73, r0_7_72, r0_7_71),
+         comedi/drivers/addi-data/hwdrv_apci1032.h,
          comedi/drivers/addi-data/hwdrv_apci1500.c,
-         comedi/drivers/addi-data/hwdrv_apci1500.h (tags: r0_7_74,
-         r0_7_73, r0_7_72, r0_7_71),
+         comedi/drivers/addi-data/hwdrv_apci1500.h,
          comedi/drivers/addi-data/hwdrv_apci1516.c,
          comedi/drivers/addi-data/hwdrv_apci1516.h,
          comedi/drivers/addi-data/hwdrv_apci1564.c,
          comedi/drivers/addi-data/hwdrv_apci2032.c,
          comedi/drivers/addi-data/hwdrv_apci2032.h,
          comedi/drivers/addi-data/hwdrv_apci2200.c,
-         comedi/drivers/addi-data/hwdrv_apci2200.h (tags: r0_7_74,
-         r0_7_73, r0_7_72, r0_7_71),
-         comedi/drivers/addi-data/hwdrv_apci3120.c (tags: r0_7_74,
-         r0_7_73, r0_7_72, r0_7_71),
-         comedi/drivers/addi-data/hwdrv_apci3120.h (tags: r0_7_74,
-         r0_7_73, r0_7_72, r0_7_71),
+         comedi/drivers/addi-data/hwdrv_apci2200.h,
+         comedi/drivers/addi-data/hwdrv_apci3120.c,
+         comedi/drivers/addi-data/hwdrv_apci3120.h,
          comedi/drivers/addi-data/hwdrv_apci3200.c,
          comedi/drivers/addi-data/hwdrv_apci3200.h,
          comedi/drivers/addi-data/hwdrv_apci3501.c,
-         comedi/drivers/addi-data/hwdrv_apci3501.h (tags: r0_7_74,
-         r0_7_73, r0_7_72, r0_7_71),
-         comedi/drivers/addi-data/hwdrv_apci3xxx.c (tags: r0_7_74,
-         r0_7_73, r0_7_72, r0_7_71),
+         comedi/drivers/addi-data/hwdrv_apci3501.h,
+         comedi/drivers/addi-data/hwdrv_apci3xxx.c,
          comedi/drivers/addi-data/hwdrv_apci3xxx.h, include/asm/pgtable.h,
-         include/linux/comedi_rt.h (tags: r0_7_73, r0_7_72, r0_7_71),
-         include/linux/compiler.h (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71), include/linux/device.h, include/linux/ioport.h: merge
-         branch-0_7 back to HEAD
+         include/linux/comedi_rt.h, include/linux/compiler.h,
+         include/linux/device.h, include/linux/ioport.h: merge branch-0_7
+         back to HEAD
+
+2005-10-06 13:27  tag branch-0_7-end
 
 2005-10-06 13:27  ds
 
-       * configure.ac, comedi/drivers/Makefile.am (utags: branch-0_7-end):
-         add addi-data directory
+       * configure.ac, comedi/drivers/Makefile.am: add addi-data directory
 
 2005-10-06 13:20  ds
 
          hwdrv_apci2032.c, hwdrv_apci2032.h, hwdrv_apci2200.c,
          hwdrv_apci2200.h, hwdrv_apci3120.c, hwdrv_apci3120.h,
          hwdrv_apci3200.c, hwdrv_apci3200.h, hwdrv_apci3501.c,
-         hwdrv_apci3501.h, hwdrv_apci3xxx.c, hwdrv_apci3xxx.h (utags:
-         branch-0_7-end): Check in update from ADDI.  Seems to compile.
+         hwdrv_apci3501.h, hwdrv_apci3xxx.c, hwdrv_apci3xxx.h: Check in
+         update from ADDI.  Seems to compile.
 
 2005-10-01 14:12  fmhess
 
-       * comedi/drivers/ni_mio_common.c (tags: branch-0_7-end): patch from
-         Jan Gukelberger <g.u.g.i@gmx.de>:
+       * comedi/drivers/ni_mio_common.c: patch from Jan Gukelberger
+         <g.u.g.i@gmx.de>:
 
          implemented INSN_CONFIG_DIO_QUERY for pfi subdevice.
 
 2005-09-20 19:27  fmhess
 
        * comedi/drivers/: das08_cs.c, ni_daq_dio24.c, ni_labpc_cs.c,
-         ni_mio_cs.c, quatech_daqp_cs.c (utags: branch-0_7-end): Deal with
-         event callback getting moved into pcmcia_driver struct in 2.6.13
-         kernels.
+         ni_mio_cs.c, quatech_daqp_cs.c: Deal with event callback getting
+         moved into pcmcia_driver struct in 2.6.13 kernels.
 
 2005-09-12 17:34  ds
 
-       * comedi/drivers/: Makefile.am, dmm32at.c (tags: branch-0_7-end):
+       * comedi/drivers/: Makefile.am, dmm32at.c:
          Add new driver
 
 2005-09-10 12:19  fmhess
 
-       * comedi/drivers/adv_pci1710.c (tags: branch-0_7-end): Fixed range
-         table for 1713.
+       * comedi/drivers/adv_pci1710.c: Fixed range table for 1713.
 
 2005-09-10 12:10  fmhess
 
-       * comedi/drivers/amplc_dio200.c (tags: branch-0_7-end): Patch from
-         abbotti@mev.co.uk (Ian Abbott):
+       * comedi/drivers/amplc_dio200.c: Patch from abbotti@mev.co.uk (Ian
+         Abbott):
 
          I cocked up the register offset for the third 8255 subdevice of
          the Amplicon PC272E and PCI272 cards.  It should be at offset
 
 2005-09-10 12:08  fmhess
 
-       * comedi/drivers/8253.h (tags: branch-0_7-end): added
-         i8254_status()
+       * comedi/drivers/8253.h: added i8254_status()
 
 2005-09-10 12:04  fmhess
 
-       * comedi/drivers/das08.c (tags: branch-0_7-end): Fixed
-         initialization bug reported by abbotti@mev.co.uk (Ian Abbott).
+       * comedi/drivers/das08.c: Fixed initialization bug reported by
+         abbotti@mev.co.uk (Ian Abbott).
 
 2005-08-28 09:16  fmhess
 
-       * comedi/drivers/cb_pcidas64.c (tags: branch-0_7-end): increase
-         allowable number of calibration sources, to try and find them on
-         the 6052
+       * comedi/drivers/cb_pcidas64.c: increase allowable number of
+         calibration sources, to try and find them on the 6052
 
 2005-08-26 20:35  fmhess
 
-       * comedi/drivers/ni_atmio.c (tags: branch-0_7-end): reverting
-         caldac type for AT-MIO-16XE-50, as it didn't help.
+       * comedi/drivers/ni_atmio.c: reverting caldac type for
+         AT-MIO-16XE-50, as it didn't help.
 
 2005-08-25 19:58  fmhess
 
-       * include/linux/compiler.h (tags: branch-0_7-end): Patch from
-         abbotti@mev.co.uk (Ian Abbott):
+       * include/linux/compiler.h: Patch from abbotti@mev.co.uk (Ian
+         Abbott):
 
          The include/linux/compiler.h file appeared in kernel 2.4.4, but
          disappeared in 2.4.5 and didn't reappear until 2.4.10! Comedi
 
 2005-08-16 13:04  fmhess
 
-       * include/linux/comedi_rt.h (tags: branch-0_7-end): removed
-         redundant include of linux/config.h
+       * include/linux/comedi_rt.h: removed redundant include of
+         linux/config.h
 
 2005-08-15 20:29  fmhess
 
-       * comedi/drivers.c, include/asm/pgtable.h (utags: branch-0_7-end):
-         fix for 4-level page tables introduced in 2.6.12
+       * comedi/drivers.c, include/asm/pgtable.h: fix for 4-level page
+         tables introduced in 2.6.12
 
 2005-08-03 19:58  fmhess
 
-       * comedi/comedi_fops.c (tags: branch-0_7-end): use vmalloc instead
-         of kmalloc in do_devconfig_ioctl() in order to accommodate large
-         firmware uploads (pci-6534).
+       * comedi/comedi_fops.c: use vmalloc instead of kmalloc in
+         do_devconfig_ioctl() in order to accommodate large firmware
+         uploads (pci-6534).
 
 2005-07-31 22:05  fmhess
 
-       * comedi/drivers/: mite.c (tags: branch-0_7-end), mite.h (tags:
-         branch-0_7-end), ni_mio_common.c: be more careful about mite
-         transfer counts
+       * comedi/drivers/: mite.c, mite.h, ni_mio_common.c: be more careful
+         about mite transfer counts
 
 2005-07-30 17:26  fmhess
 
 
 2005-07-24 22:12  fmhess
 
-       * INSTALL (tags: branch-0_7-end): revert INSTALL, which I
-         accidentally blew away
+       * INSTALL: revert INSTALL, which I accidentally blew away
 
 2005-07-24 22:10  fmhess
 
-       * INSTALL, comedi/comedi_fops.c, include/linux/device.h (tags:
-         branch-0_7-end): patch from abbotti@mev.co.uk (Ian Abbott):
+       * INSTALL, comedi/comedi_fops.c, include/linux/device.h: patch from
+         abbotti@mev.co.uk (Ian Abbott):
 
          The class_simple interface has been removed - mostly a renaming
          exercise.  Comedi needs to use the new interface with some
 
 2005-07-24 22:09  fmhess
 
-       * include/linux/time.h (tags: branch-0_7-end): jiffies_to_msecs was
-         added in 2.6.7 (and 2.4.29)
+       * include/linux/time.h: jiffies_to_msecs was added in 2.6.7 (and
+         2.4.29)
 
 2005-07-24 21:16  fmhess
 
 
 2005-07-24 16:59  fmhess
 
-       * comedi/drivers/s626.c (tags: branch-0_7-end): patch from
-         abbotti@mev.co.uk (Ian Abbott):
+       * comedi/drivers/s626.c: patch from abbotti@mev.co.uk (Ian Abbott):
 
          The s626.c driver needs to use COMEDI_INITCLEANUP_NOMODULE
          instead of COMEDI_INITCLEANUP because it uses the MODULE_AUTHOR,
 
 2005-07-24 16:50  fmhess
 
-       * comedi/drivers/s626.h (tags: branch-0_7-end): patch from
-         gpalli@deis.unibo.it (Gianluca Palli):
+       * comedi/drivers/s626.h: patch from gpalli@deis.unibo.it (Gianluca
+         Palli):
 
          Added Sensoray copyright notice.
 
 
 2005-07-04 17:27  fmhess
 
-       * comedi/drivers/: ni_labpc.c, ni_pcimio.c (utags: branch-0_7-end):
-         mite_iobase is gone
+       * comedi/drivers/: ni_labpc.c, ni_pcimio.c: mite_iobase is gone
 
 2005-07-04 14:20  fmhess
 
-       * comedi/drivers/dt3000.c (tags: branch-0_7-end): add missing
-         iounmap in detach
+       * comedi/drivers/dt3000.c: add missing iounmap in detach
 
 2005-07-04 14:18  fmhess
 
-       * comedi/drivers/: 8253.h, cb_pcidas64.c, daqboard2000.c (tags:
-         branch-0_7-end), dt3000.c, gsc_hpdi.c (tags: branch-0_7-end),
-         icp_multi.c (tags: branch-0_7-end), ii_pci20kc.c (tags:
-         branch-0_7-end), me_daq.c (tags: branch-0_7-end), mite.h,
-         ni_6527.c (tags: branch-0_7-end), ni_660x.c (tags:
-         branch-0_7-end), ni_670x.c (tags: branch-0_7-end), ni_labpc.c,
-         ni_pcidio.c (tags: branch-0_7-end), ni_pcimio.c, plx9080.h (tags:
-         branch-0_7-end): fix compile warnings due to doing write[bwl] and
-         read[bwl] to addresses specified by unsigned long instead of
-         void*
+       * comedi/drivers/: 8253.h, cb_pcidas64.c, daqboard2000.c, dt3000.c,
+         gsc_hpdi.c, icp_multi.c, ii_pci20kc.c, me_daq.c, mite.h,
+         ni_6527.c, ni_660x.c, ni_670x.c, ni_labpc.c, ni_pcidio.c,
+         ni_pcimio.c, plx9080.h: fix compile warnings due to doing
+         write[bwl] and read[bwl] to addresses specified by unsigned long
+         instead of void*
 
 2005-07-04 14:17  fmhess
 
-       * include/linux/ioport.h (tags: branch-0_7-end): fix return value
-         of request_mem_region compatibility macro so it returns a
-         non-null value (null indicates error).
+       * include/linux/ioport.h: fix return value of request_mem_region
+         compatibility macro so it returns a non-null value (null
+         indicates error).
 
 2005-07-04 12:46  fmhess
 
-       * comedi/drivers/adv_pci_dio.c (tags: branch-0_7-end): fix typo
+       * comedi/drivers/adv_pci_dio.c: fix typo
 
 2005-06-26 13:53  fmhess
 
-       * comedi/drivers/: ni_mio_common.c, ni_stc.h (tags:
-         branch-0_7-end): some tweaks to try and support ao commands on
-         pci boards without ao fifos.
+       * comedi/drivers/: ni_mio_common.c, ni_stc.h: some tweaks to try
+         and support ao commands on pci boards without ao fifos.
 
 2005-06-26 11:35  fmhess
 
-       * comedi/drivers/: amplc_pc263.c, cb_pcidas.c (utags:
-         branch-0_7-end): patch from abbotti@mev.co.uk (Ian Abbott):
+       * comedi/drivers/: amplc_pc263.c, cb_pcidas.c: patch from
+         abbotti@mev.co.uk (Ian Abbott):
 
          At the end of February (or possibly the beginning of March,
          depending on your timezone!) I submitted a patch to remove
 
 2005-06-15 19:24  fmhess
 
-       * ChangeLog, Contributors, Makefile.am, comedi/rt.c (tags: r0_7_73,
-         r0_7_72, r0_7_71), comedi/rt_pend_tq.c (tags: r0_7_73, r0_7_72,
-         r0_7_71), include/linux/comedi_rt.h, m4/rtai.m4: * Contributors:
-         Added Alexis Berlemont and Simone Mannori.  * Makefile.am: Fix
-         depmod call on "make install".  * comedi/rt.c:
+       * ChangeLog, Contributors, Makefile.am, comedi/rt.c,
+         comedi/rt_pend_tq.c, include/linux/comedi_rt.h, m4/rtai.m4: *
+         Contributors: Added Alexis Berlemont and Simone Mannori.  *
+         Makefile.am: Fix depmod call on "make install".  * comedi/rt.c:
          (comedi_request_irq), (comedi_free_irq), (comedi_switch_to_rt),
          (comedi_switch_to_non_rt), (handle_void_irq),
          (comedi_rt_get_irq), (fusion_handle_irq),
 
 2005-06-15 19:11  fmhess
 
-       * Contributors (tags: branch-0_7-end): add Alexis Berlemont
-         <berlemont.hauw@free.fr>
+       * Contributors: add Alexis Berlemont <berlemont.hauw@free.fr>
 
 2005-06-15 19:05  fmhess
 
-       * Makefile.am (tags: branch-0_7-end): fix depmod call on install
+       * Makefile.am: fix depmod call on install
 
 2005-06-15 18:58  fmhess
 
 
 2005-06-14 07:16  fmhess
 
-       * comedi/rt.c (tags: branch-0_7-end): only allocate
-         comedi_irq_struct if we are going to use it (fixes memory leak
-         caused by my last changes).
+       * comedi/rt.c: only allocate comedi_irq_struct if we are going to
+         use it (fixes memory leak caused by my last changes).
 
 2005-06-13 21:43  fmhess
 
 
 2005-06-12 22:14  fmhess
 
-       * comedi/rt.c, comedi/rt_pend_tq.c (tags: branch-0_7-end),
-         include/linux/comedi_rt.h, m4/rtai.m4 (tags: branch-0_7-end):
-         rtai fusion support from Alexis Berlemont
+       * comedi/rt.c, comedi/rt_pend_tq.c, include/linux/comedi_rt.h,
+         m4/rtai.m4: rtai fusion support from Alexis Berlemont
          <berlemont.hauw@free.fr>, slightly modified by me.  Patch to
          comedi_rt_timer has not been applied yet.
 
 
 2005-06-12 21:25  fmhess
 
-       * comedi/drivers/cb_das16_cs.c (tags: branch-0_7-end): fix for
-         analog output, based on patch from Simone Mannori
-         <smannori@f2n.it>
+       * comedi/drivers/cb_das16_cs.c: fix for analog output, based on
+         patch from Simone Mannori <smannori@f2n.it>
 
 2005-06-12 18:09  bporr
 
-       * comedi/drivers/usbduxfast.c (tags: branch-0_7-end): For one
-         channel now sampling rates up to 30MHz are possible.  However,
-         buffer overflows in the usb system limit the number of
-         consecutive samples to 256. At 5MHz 796 samples are possible and
-         at 3MHz continous sampling is possible.
+       * comedi/drivers/usbduxfast.c: For one channel now sampling rates
+         up to 30MHz are possible.  However, buffer overflows in the usb
+         system limit the number of consecutive samples to 256. At 5MHz
+         796 samples are possible and at 3MHz continous sampling is
+         possible.
 
 2005-06-04 10:40  fmhess
 
 
 2005-06-04 10:32  fmhess
 
-       * comedi/drivers/8255.c (tags: branch-0_7-end),
-         comedi/drivers/acl7225b.c (tags: branch-0_7-end),
-         comedi/drivers/adl_pci6208.c (tags: branch-0_7-end),
-         comedi/drivers/adl_pci9118.c (tags: branch-0_7-end),
+       * comedi/drivers/8255.c, comedi/drivers/acl7225b.c,
+         comedi/drivers/adl_pci6208.c, comedi/drivers/adl_pci9118.c,
          comedi/drivers/adv_pci1710.c, comedi/drivers/amplc_dio200.c,
-         comedi/drivers/amplc_pc236.c (tags: branch-0_7-end),
-         comedi/drivers/amplc_pc263.c, comedi/drivers/amplc_pci230.c
-         (tags: branch-0_7-end), comedi/drivers/cb_pcidas.c,
-         comedi/drivers/comedi_parport.c (tags: branch-0_7-end),
-         comedi/drivers/das08.c, comedi/drivers/das16.c (tags:
-         branch-0_7-end), comedi/drivers/das16m1.c (tags: branch-0_7-end),
-         comedi/drivers/das1800.c (tags: branch-0_7-end),
-         comedi/drivers/das6402.c (tags: branch-0_7-end),
-         comedi/drivers/das800.c (tags: branch-0_7-end),
-         comedi/drivers/dt2801.c (tags: branch-0_7-end),
-         comedi/drivers/dt2811.c (tags: branch-0_7-end),
-         comedi/drivers/dt2814.c (tags: branch-0_7-end),
-         comedi/drivers/dt2815.c (tags: branch-0_7-end),
-         comedi/drivers/dt2817.c (tags: branch-0_7-end),
-         comedi/drivers/dt282x.c (tags: branch-0_7-end),
-         comedi/drivers/fl512.c (tags: branch-0_7-end),
-         comedi/drivers/multiq3.c (tags: branch-0_7-end),
-         comedi/drivers/ni_at_a2150.c (tags: branch-0_7-end),
-         comedi/drivers/ni_at_ao.c (tags: branch-0_7-end),
-         comedi/drivers/ni_atmio.c, comedi/drivers/ni_atmio16d.c (tags:
-         branch-0_7-end), comedi/drivers/ni_labpc.c,
-         comedi/drivers/pcl711.c (tags: branch-0_7-end),
-         comedi/drivers/pcl724.c (tags: branch-0_7-end),
-         comedi/drivers/pcl725.c (tags: branch-0_7-end),
-         comedi/drivers/pcl726.c (tags: branch-0_7-end),
-         comedi/drivers/pcl730.c (tags: branch-0_7-end),
-         comedi/drivers/pcl812.c (tags: branch-0_7-end),
-         comedi/drivers/pcl816.c (tags: branch-0_7-end),
-         comedi/drivers/pcl818.c (tags: branch-0_7-end),
-         comedi/drivers/pcm3730.c (tags: branch-0_7-end),
-         comedi/drivers/pcmad.c (tags: branch-0_7-end),
-         comedi/drivers/poc.c (tags: branch-0_7-end),
-         comedi/drivers/rti800.c (tags: branch-0_7-end),
-         comedi/drivers/rti802.c (tags: branch-0_7-end),
-         include/linux/ioport.h, include/linux/pci.h (tags:
-         branch-0_7-end): Patch from Ian Abbot <abbotti@mev.co.uk>:
+         comedi/drivers/amplc_pc236.c, comedi/drivers/amplc_pc263.c,
+         comedi/drivers/amplc_pci230.c, comedi/drivers/cb_pcidas.c,
+         comedi/drivers/comedi_parport.c, comedi/drivers/das08.c,
+         comedi/drivers/das16.c, comedi/drivers/das16m1.c,
+         comedi/drivers/das1800.c, comedi/drivers/das6402.c,
+         comedi/drivers/das800.c, comedi/drivers/dt2801.c,
+         comedi/drivers/dt2811.c, comedi/drivers/dt2814.c,
+         comedi/drivers/dt2815.c, comedi/drivers/dt2817.c,
+         comedi/drivers/dt282x.c, comedi/drivers/fl512.c,
+         comedi/drivers/multiq3.c, comedi/drivers/ni_at_a2150.c,
+         comedi/drivers/ni_at_ao.c, comedi/drivers/ni_atmio.c,
+         comedi/drivers/ni_atmio16d.c, comedi/drivers/ni_labpc.c,
+         comedi/drivers/pcl711.c, comedi/drivers/pcl724.c,
+         comedi/drivers/pcl725.c, comedi/drivers/pcl726.c,
+         comedi/drivers/pcl730.c, comedi/drivers/pcl812.c,
+         comedi/drivers/pcl816.c, comedi/drivers/pcl818.c,
+         comedi/drivers/pcm3730.c, comedi/drivers/pcmad.c,
+         comedi/drivers/poc.c, comedi/drivers/rti800.c,
+         comedi/drivers/rti802.c, include/linux/ioport.h,
+         include/linux/pci.h: Patch from Ian Abbot <abbotti@mev.co.uk>:
 
          I've done some work on getting rid of the check_region calls
          which are now deprecated.
 
 2005-05-28 19:26  bporr
 
-       * comedi/drivers/usbdux.c (tags: branch-0_7-end): urb_kill is
-         available from 2.6.8 and not from 2.6.10. This affects especially
-         sarge which works with 2.6.8. The urb_kill command is much safer
-         than the urb_unlink.  The async cmd is modifying the sampling
-         interval so that the user program can use the real sampling rate.
+       * comedi/drivers/usbdux.c: urb_kill is available from 2.6.8 and not
+         from 2.6.10. This affects especially sarge which works with
+         2.6.8. The urb_kill command is much safer than the urb_unlink.
+         The async cmd is modifying the sampling interval so that the user
+         program can use the real sampling rate.
 
 2005-05-28 15:10  fmhess
 
-       * ChangeLog, include/linux/delay.h (tags: r0_7_74, r0_7_73,
-         r0_7_72, r0_7_71), include/linux/time.h, include/linux/usb.h: *
-         include/linux/delay.h: Added msleep_interruptible() *
-         include/linux/time.h:i Added msecs_to_jiffies() and
-         jiffies_to_msecs() * include/linux/usb.h: Added USB_CONTROL_MSG()
-         and USB_BULK_MSG()
+       * ChangeLog, include/linux/delay.h, include/linux/time.h,
+         include/linux/usb.h: * include/linux/delay.h: Added
+         msleep_interruptible() * include/linux/time.h:i Added
+         msecs_to_jiffies() and jiffies_to_msecs() * include/linux/usb.h:
+         Added USB_CONTROL_MSG() and USB_BULK_MSG()
 
 2005-05-28 15:02  fmhess
 
-       * include/linux/: delay.h (tags: branch-0_7-end), time.h: added
-         jiffies_to_msecs() and msleep_interruptible() to compatibility
-         headers
+       * include/linux/: delay.h, time.h: added jiffies_to_msecs() and
+         msleep_interruptible() to compatibility headers
 
 2005-05-28 14:54  fmhess
 
 2005-05-28 14:32  fmhess
 
        * comedi/drivers/usbdux.c, comedi/drivers/usbduxfast.c,
-         include/linux/usb.h (tags: branch-0_7-end): add USB_CONTROL_MSG
-         and USB_BULK_MSG compatibility functions due to change in meaning
-         of timeout argument with kernel 2.6.12
+         include/linux/usb.h: add USB_CONTROL_MSG and USB_BULK_MSG
+         compatibility functions due to change in meaning of timeout
+         argument with kernel 2.6.12
 
 2005-05-23 18:56  bporr
 
 
 2005-05-16 18:19  fmhess
 
-       * include/linux/mm.h (tags: branch-0_7-end): revert to revision
-         1.8, as the issues with remap_page_range have already been fixed
-         by migrating to remap_pfn_range
+       * include/linux/mm.h: revert to revision 1.8, as the issues with
+         remap_page_range have already been fixed by migrating to
+         remap_pfn_range
 
 2005-05-14 19:08  fmhess
 
 
 2005-04-17 21:25  fmhess
 
-       * ChangeLog, comedi/kcomedilib/get.c (tags: r0_7_73, r0_7_72,
-         r0_7_71): * comedi/kcomedilib/get.c: Added
-         comedi_mark_buffer_written() to kcomedilib.
+       * ChangeLog, comedi/kcomedilib/get.c: * comedi/kcomedilib/get.c:
+         Added comedi_mark_buffer_written() to kcomedilib.
 
 2005-04-17 21:21  fmhess
 
-       * comedi/kcomedilib/get.c (tags: branch-0_7-end): added
-         comedi_mark_buffer_written() to kcomedilib
+       * comedi/kcomedilib/get.c: added comedi_mark_buffer_written() to
+         kcomedilib
 
 2005-04-17 18:30  bporr
 
 
 2005-04-07 22:58  ds
 
-       * ChangeLog, ChangeLog-0.7 (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71): * ChangeLog-0.7: Move ChangeLog to ChangeLog-0.7, and
-         start this changelog
+       * ChangeLog, ChangeLog-0.7: * ChangeLog-0.7: Move ChangeLog to
+         ChangeLog-0.7, and start this changelog
 
 2005-04-07 22:57  ds
 
-       * ChangeLog (tags: branch-0_7-end): copy from HEAD
+       * ChangeLog: copy from HEAD
 
 2005-04-07 19:53  fmhess
 
        * ChangeLog: summary of 0.7.70 changes
 
+2005-04-07 16:20  tag branch-0_7-start
+
 2005-04-07 16:20  ds
 
-       * comedi/rt.c (tags: branch-0_7-start), include/linux/irq.h: Remove
-         references to linux/irq.h
+       * comedi/rt.c, include/linux/irq.h: Remove references to
+         linux/irq.h
 
 2005-04-07 16:15  ds
 
-       * Makefile.am (tags: branch-0_7-start): Re-add call to depmod if
-         it's a normal install
+       * Makefile.am: Re-add call to depmod if it's a normal install
 
 2005-04-07 12:52  fmhess
 
-       * Contributors (tags: branch-0_7-start): added José Luis Sánchez
+       * Contributors: added José Luis Sánchez
 
 2005-04-05 16:21  ds
 
-       * comedi/drivers/ni_pcidio.c (tags: branch-0_7-start): Remove
-         linux/irq.h.  It should be asm/irq.h, which is included
-         automatically.
+       * comedi/drivers/ni_pcidio.c: Remove linux/irq.h.  It should be
+         asm/irq.h, which is included automatically.
+
+2005-04-02 19:00  tag r0_7_70
 
 2005-04-02 19:00  ds
 
-       * autogen.sh (tags: r0_7_71, branch-0_7-end, branch-0_7-start,
-         r0_7_70): Use -i and -f flags
+       * autogen.sh: Use -i and -f flags
 
 2005-04-02 18:57  ds
 
-       * Makefile.am (tags: r0_7_70): Fix drivers.txt target
+       * Makefile.am: Fix drivers.txt target
 
 2005-04-02 18:52  ds
 
-       * AUTHORS (tags: r0_7_73, r0_7_72, r0_7_71, branch-0_7-end,
-         branch-0_7-start, r0_7_70), NEWS (tags: r0_7_74, r0_7_73,
-         r0_7_72, r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70),
-         autogen.sh: Use autoreconf.  Add files
+       * AUTHORS, NEWS, autogen.sh: Use autoreconf.  Add files
 
 2005-04-02 18:48  ds
 
 
 2005-03-31 23:24  ds
 
-       * comedi/drivers/: acl7225b.c, adl_pci6208.c, adl_pci9111.c (tags:
-         branch-0_7-end), adv_pci_dio.c, amplc_pc236.c, amplc_pc263.c,
-         amplc_pci230.c, cb_pcidas.c, cb_pcidas64.c, cb_pcidda.c (tags:
-         branch-0_7-end), cb_pcimdas.c (tags: branch-0_7-end),
-         cb_pcimdda.c (tags: branch-0_7-end), contec_pci_dio.c (tags:
-         branch-0_7-end), das08.c, gsc_hpdi.c, me4000.c (tags:
-         branch-0_7-end), me_daq.c, ni_6527.c, poc.c (utags:
-         branch-0_7-start, r0_7_70): Documentation fixes
+       * comedi/drivers/: acl7225b.c, adl_pci6208.c, adl_pci9111.c,
+         adv_pci_dio.c, amplc_pc236.c, amplc_pc263.c, amplc_pci230.c,
+         cb_pcidas.c, cb_pcidas64.c, cb_pcidda.c, cb_pcimdas.c,
+         cb_pcimdda.c, contec_pci_dio.c, das08.c, gsc_hpdi.c, me4000.c,
+         me_daq.c, ni_6527.c, poc.c: Documentation fixes
 
 2005-03-31 23:23  ds
 
-       * configure.ac (tags: branch-0_7-start, r0_7_70): version bump
+       * configure.ac: version bump
 
 2005-03-31 22:00  ds
 
-       * Makefile.am, configure.ac, comedi/Makefile.am (tags:
-         branch-0_7-end, branch-0_7-start, r0_7_70),
-         comedi/drivers/Makefile.am (tags: branch-0_7-start, r0_7_70),
-         comedi/kcomedilib/Makefile.am (tags: branch-0_7-end,
-         branch-0_7-start, r0_7_70), m4/as-linux.m4 (tags: branch-0_7-end,
-         branch-0_7-start, r0_7_70), m4/as-modtool.m4 (tags:
-         branch-0_7-end, branch-0_7-start, r0_7_70): Make distcheck work.
-         Add LINUX_MODULE_STYLE to indicate module building style.
+       * Makefile.am, configure.ac, comedi/Makefile.am,
+         comedi/drivers/Makefile.am, comedi/kcomedilib/Makefile.am,
+         m4/as-linux.m4, m4/as-modtool.m4: Make distcheck work.  Add
+         LINUX_MODULE_STYLE to indicate module building style.
 
 2005-03-28 21:49  fmhess
 
-       * comedi/drivers/ni_660x.c (tags: branch-0_7-start, r0_7_70): fix
-         compile warning, and initialize both tio chips
+       * comedi/drivers/ni_660x.c: fix compile warning, and initialize
+         both tio chips
 
 2005-03-28 21:41  fmhess
 
-       * comedi/drivers/: mite.c (tags: branch-0_7-start, r0_7_70), mite.h
-         (tags: branch-0_7-start, r0_7_70), ni_660x.c: patch from Klaas
+       * comedi/drivers/: mite.c, mite.h, ni_660x.c: patch from Klaas
          Gadeyne <Klaas.Gadeyne@mech.kuleuven.ac.be> which fixes problem
          with initialization of CounterSwap bit in the
          ClockConfigRegister.
 
 2005-03-21 21:30  fmhess
 
-       * comedi/comedi_fops.c (tags: branch-0_7-start, r0_7_70): check for
-         CAP_SYS_MODULE instead of CAP_SYS_ADMIN in comedi_fop_open()
+       * comedi/comedi_fops.c: check for CAP_SYS_MODULE instead of
+         CAP_SYS_ADMIN in comedi_fop_open()
 
 2005-03-18 22:36  fmhess
 
-       * comedi/drivers/: daqboard2000.c (tags: branch-0_7-start,
-         r0_7_70), me4000.c, me_daq.c: add mention of
-         comedi_nonfree_firmware tarball
+       * comedi/drivers/: daqboard2000.c, me4000.c, me_daq.c: add mention
+         of comedi_nonfree_firmware tarball
 
 2005-03-18 22:35  fmhess
 
-       * comedi/drivers/ni_pcidio.c (tags: r0_7_70): allow schedules()
-         during firmware upload
+       * comedi/drivers/ni_pcidio.c: allow schedules() during firmware
+         upload
 
 2005-03-17 19:00  fmhess
 
 2005-03-17 12:25  fmhess
 
        * comedi/comedi_fops.c, comedi/drivers/daqboard2000.c,
-         comedi/drivers/me_daq.c, comedi/drivers/usbdux.c (tags:
-         branch-0_7-start, r0_7_70), comedi/drivers/usbduxfast.c (tags:
-         branch-0_7-start, r0_7_70), include/linux/comedi.h (tags:
-         branch-0_7-end, branch-0_7-start, r0_7_70),
-         include/linux/comedidev.h (tags: r0_7_71, branch-0_7-end,
-         branch-0_7-start, r0_7_70): add support for uploading firmware on
+         comedi/drivers/me_daq.c, comedi/drivers/usbdux.c,
+         comedi/drivers/usbduxfast.c, include/linux/comedi.h,
+         include/linux/comedidev.h: add support for uploading firmware on
          64 bit arches, and added support for loading up to 4 different
          firmware files (will be needed by ni pci-6534).
 
 
 2005-03-16 10:56  fmhess
 
-       * include/linux/mm.h (tags: branch-0_7-start, r0_7_70): fix version
-         check for remap_pfn_range() compatibility
+       * include/linux/mm.h: fix version check for remap_pfn_range()
+         compatibility
 
 2005-03-14 20:00  fmhess
 
 
 2005-03-13 10:17  fmhess
 
-       * comedi/: comedi_fops.c, kcomedilib/kcomedilib_main.c (tags:
-         r0_7_73, r0_7_72, r0_7_71, branch-0_7-end, branch-0_7-start,
-         r0_7_70): move check of s->busy after aquisition of
-         big_comedi_lock in do_lock_ioctl.  Make locking return a less
-         confusing error code on failure.  Make locking fail if process
-         already has lock (alternative would be to make locking recursive,
-         but I don't see a reason to bother).
+       * comedi/: comedi_fops.c, kcomedilib/kcomedilib_main.c: move check
+         of s->busy after aquisition of big_comedi_lock in do_lock_ioctl.
+         Make locking return a less confusing error code on failure.  Make
+         locking fail if process already has lock (alternative would be to
+         make locking recursive, but I don't see a reason to bother).
 
 2005-03-12 08:31  fmhess
 
-       * comedi/drivers/amplc_pci224.c (tags: branch-0_7-end,
-         branch-0_7-start, r0_7_70): patch from Ian Abbott
+       * comedi/drivers/amplc_pci224.c: patch from Ian Abbott
          <abbotti@mev.co.uk>:
 
          Here's a change to my new amplc_pci224 driver to use
 
 2005-03-06 12:31  fmhess
 
-       * comedi/drivers/: 8255.c (tags: branch-0_7-start, r0_7_70),
-         adl_pci6208.c, cb_das16_cs.c (tags: branch-0_7-start, r0_7_70),
-         cb_pcidas64.c, dt3000.c (tags: branch-0_7-start, r0_7_70),
-         gsc_hpdi.c, me4000.c, mpc8260cpm.c (tags: r0_7_73, r0_7_72,
-         r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70), ni_660x.c,
-         ni_670x.c (tags: branch-0_7-start, r0_7_70), ni_at_ao.c (tags:
-         branch-0_7-start, r0_7_70), ni_mio_common.c (tags:
-         branch-0_7-start, r0_7_70), ni_pcidio.c, rtd520.c (tags:
-         branch-0_7-end, branch-0_7-start, r0_7_70), skel.c (tags:
-         r0_7_73, r0_7_72, r0_7_71, branch-0_7-end, branch-0_7-start,
-         r0_7_70), ssv_dnp.c (tags: r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70), usbdux.c: add support
-         for new INSN_CONFIG_DIO_QUERY
+       * comedi/drivers/: 8255.c, adl_pci6208.c, cb_das16_cs.c,
+         cb_pcidas64.c, dt3000.c, gsc_hpdi.c, me4000.c, mpc8260cpm.c,
+         ni_660x.c, ni_670x.c, ni_at_ao.c, ni_mio_common.c, ni_pcidio.c,
+         rtd520.c, skel.c, ssv_dnp.c, usbdux.c: add support for new
+         INSN_CONFIG_DIO_QUERY
 
 2005-03-06 12:30  fmhess
 
 2005-03-03 18:13  fmhess
 
        * comedi/drivers/: adl_pci6208.c, adl_pci9111.c, adv_pci_dio.c,
-         amcc_s5933.c (tags: branch-0_7-end, branch-0_7-start, r0_7_70),
-         amplc_dio200.c (tags: branch-0_7-start, r0_7_70), amplc_pc236.c,
-         amplc_pc263.c, amplc_pci230.c, cb_pcidas.c, cb_pcidas64.c,
-         cb_pcidda.c, cb_pcimdas.c, cb_pcimdda.c, contec_pci_dio.c,
-         daqboard2000.c, das08.c, dt3000.c, gsc_hpdi.c, ke_counter.c
-         (tags: branch-0_7-end, branch-0_7-start, r0_7_70), me4000.c,
-         me_daq.c, mite.c, rtd520.c: patch from Ian Abbott
-         <abbotti@mev.co.uk>:
+         amcc_s5933.c, amplc_dio200.c, amplc_pc236.c, amplc_pc263.c,
+         amplc_pci230.c, cb_pcidas.c, cb_pcidas64.c, cb_pcidda.c,
+         cb_pcimdas.c, cb_pcimdda.c, contec_pci_dio.c, daqboard2000.c,
+         das08.c, dt3000.c, gsc_hpdi.c, ke_counter.c, me4000.c, me_daq.c,
+         mite.c, rtd520.c: patch from Ian Abbott <abbotti@mev.co.uk>:
 
          updates the drivers to use pci_get_device() instead of
          pci_find_device() and fixes a few other bits that seemed to be
 
 2005-03-03 18:08  fmhess
 
-       * include/linux/pci.h (tags: branch-0_7-start, r0_7_70): patch from
-         Ian Abbott <abbotti@mev.co.uk>:
+       * include/linux/pci.h: patch from Ian Abbott <abbotti@mev.co.uk>:
 
          adds two more compatibility definitions for 'pci_dev_get()' and
          'pci_get_device()'
 
 2005-02-27 18:12  fmhess
 
-       * include/: linux/device.h, pcmcia/ds.h (tags: r0_7_74, r0_7_73,
-         r0_7_72, r0_7_71, branch-0_7-end) (utags: branch-0_7-start,
-         r0_7_70): patch from Ian Abbott <abbotti@mev.co.uk>:
+       * include/: linux/device.h, pcmcia/ds.h: patch from Ian Abbott
+         <abbotti@mev.co.uk>:
 
          The last change to das08_cs.c on Feb 5 breaks on 2.4, though the
          change itself was not unreasonable (it saves a few bytes at
 
 2005-02-27 17:26  fmhess
 
-       * include/: asm/pgtable.h (tags: branch-0_7-start, r0_7_70),
-         linux/mm.h: patch from Ian Abbott <abbotti@mev.co.uk>:
+       * include/: asm/pgtable.h, linux/mm.h: patch from Ian Abbott
+         <abbotti@mev.co.uk>:
 
          This patch against CVS also applies to comedi-0.7.69 and allows
          it to compile correctly against Red Hat 9's 2.4.20-8 kernel, and
 
 2005-02-21 16:02  fmhess
 
-       * comedi/drivers/8253.h (tags: branch-0_7-start, r0_7_70): replace
-         0x10000 with max_count constant, and handle a couple more corner
-         cases
+       * comedi/drivers/8253.h: replace 0x10000 with max_count constant,
+         and handle a couple more corner cases
 
 2005-02-21 15:52  fmhess
 
 
 2005-02-17 18:37  fmhess
 
-       * comedi/drivers/: amplc_pc236.c, comedi_parport.c (tags:
-         branch-0_7-start, r0_7_70): patch from  Ian Abbott
-         <abbotti@mev.co.uk>:
+       * comedi/drivers/: amplc_pc236.c, comedi_parport.c: patch from  Ian
+         Abbott <abbotti@mev.co.uk>:
 
          This patch sets the COMEDI_CB_BLOCK event in the interrupt
          routines of the comedi_parport and amplc_pc236 drivers, as
 
 2005-02-17 18:15  fmhess
 
-       * include/linux/compiler.h (tags: branch-0_7-start, r0_7_70): inew
-         compatibility header from Ian Abbott <abbotti@mev.co.uk>
+       * include/linux/compiler.h: inew compatibility header from Ian
+         Abbott <abbotti@mev.co.uk>
 
 2005-02-17 18:13  fmhess
 
 
 2005-02-17 17:58  fmhess
 
-       * include/asm/semaphore.h (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70): new
-         compatibility header from Ian Abbott <abbotti@mev.co.uk>:
+       * include/asm/semaphore.h: new compatibility header from Ian Abbott
+         <abbotti@mev.co.uk>:
 
          Here's an asm/semaphore.h compatibility header to help build
          Comedi drivers for kernel versions prior to 2.2.18.  It defines
 
 2005-02-17 17:42  fmhess
 
-       * comedi/drivers/comedi_rt_timer.c (tags: r0_7_73, r0_7_72,
-         r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70): patch from
-         Emmanuel PACAUD <emmanuel.pacaud@univ-poitiers.fr>:
+       * comedi/drivers/comedi_rt_timer.c: patch from Emmanuel PACAUD
+         <emmanuel.pacaud@univ-poitiers.fr>:
 
          Here's a trivial patch that closes comedi device file when
          detaching comedi_rt_timer driver.
 
 2005-02-08 20:53  fmhess
 
-       * include/linux/sched.h (tags: branch-0_7-end, branch-0_7-start,
-         r0_7_70): patch from Ian Abbott <abbotti@mev.co.uk>:
+       * include/linux/sched.h: patch from Ian Abbott <abbotti@mev.co.uk>:
 
          This patch adds compatibility code for the 'wait_event()' macro
          in linux/sched.h for kernels prior to 2.2.3.  The actual
 
 2005-02-05 10:23  fmhess
 
-       * comedi/drivers/das08_cs.c (tags: branch-0_7-start, r0_7_70): fix
-         pcmcia_driver.drv.name
+       * comedi/drivers/das08_cs.c: fix pcmcia_driver.drv.name
 
 2005-02-05 10:22  fmhess
 
 
 2005-01-25 18:41  fmhess
 
-       * comedi/drivers/comedi_fc.c (tags: r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70): fix rounding error in
+       * comedi/drivers/comedi_fc.c: fix rounding error in
          bytes_per_scan() for dio subdevices, noted by  Ian Abbott
          <abbotti@mev.co.uk>.  Also, round to nearest sampl_t or  lsampl_t
          size, instead of nearest byte size.
 
 2005-01-22 09:22  fmhess
 
-       * comedi/rt.c (tags: r0_7_70), comedi/drivers/adl_pci6208.c,
+       * comedi/rt.c, comedi/drivers/adl_pci6208.c,
          comedi/drivers/adl_pci9111.c, comedi/drivers/adv_pci_dio.c,
          comedi/drivers/amcc_s5933.c, comedi/drivers/amplc_pc236.c,
          comedi/drivers/amplc_pc263.c, comedi/drivers/amplc_pci230.c,
          comedi/drivers/cb_pcidas.c, comedi/drivers/cb_pcidas64.c,
          comedi/drivers/cb_pcidda.c, comedi/drivers/cb_pcimdas.c,
          comedi/drivers/cb_pcimdda.c, comedi/drivers/contec_pci_dio.c,
-         comedi/drivers/das08.c, comedi/drivers/icp_multi.h (tags:
-         branch-0_7-end, branch-0_7-start, r0_7_70),
+         comedi/drivers/das08.c, comedi/drivers/icp_multi.h,
          comedi/drivers/ke_counter.c, comedi/drivers/me4000.c,
          comedi/drivers/me_daq.c, comedi/drivers/mite.c,
          comedi/drivers/rtd520.c, include/linux/pci.h: got rid of
 
 2005-01-22 09:15  fmhess
 
-       * Contributors (tags: r0_7_70): alphabetized contributors
+       * Contributors: alphabetized contributors
 
 2005-01-13 20:23  fmhess
 
 
 2005-01-03 18:43  fmhess
 
-       * include/linux/comedi_rt.h (tags: branch-0_7-start, r0_7_70): fix
-         rtlinux compile
+       * include/linux/comedi_rt.h: fix rtlinux compile
 
 2005-01-03 17:48  bporr
 
 
 2004-12-12 21:02  fmhess
 
-       * comedi/drivers/: ni_mio_common.c, ni_stc.h (tags:
-         branch-0_7-start, r0_7_70): make single-scan ai commands work
+       * comedi/drivers/: ni_mio_common.c, ni_stc.h: make single-scan ai
+         commands work
 
 2004-12-12 20:59  fmhess
 
 
 2004-11-29 20:01  fmhess
 
-       * comedi/drivers/: Makefile.am, acl7225b.c, pcl730.c (tags:
-         branch-0_7-start, r0_7_70): added new drivers from José Luis
-         Sánchez (jsanchezv@teleline.es)
+       * comedi/drivers/: Makefile.am, acl7225b.c, pcl730.c: added new
+         drivers from José Luis Sánchez (jsanchezv@teleline.es)
 
 2004-11-20 12:22  fmhess
 
 
 2004-11-20 11:55  fmhess
 
-       * comedi/drivers/: cb_das16_cs.c, cb_pcimdas.c, fl512.c (tags:
-         branch-0_7-start, r0_7_70), me4000.c, ni_daq_dio24.c (tags:
-         branch-0_7-start, r0_7_70): some comment fixes to make
-         Devices.txt get generated correctly
+       * comedi/drivers/: cb_das16_cs.c, cb_pcimdas.c, fl512.c, me4000.c,
+         ni_daq_dio24.c: some comment fixes to make Devices.txt get
+         generated correctly
 
 2004-11-14 18:12  bporr
 
 
 2004-11-10 19:20  bporr
 
-       * include/linux/usb.h (tags: branch-0_7-start, r0_7_70):
+       * include/linux/usb.h:
          The memory allocation flag GFP_KERNEL is not permissible in an
          interrupt callback. It has to be GFP_ATOMIC. The submit_urb
          function has been called with the wrong kernel kernel flag. It's
 
 2004-10-10 13:02  fmhess
 
-       * ChangeLog (tags: branch-0_7-start, r0_7_70), Changelog: renamged
-         Changelog to ChangeLog and add entry for 0.7.69
+       * ChangeLog, Changelog: renamged Changelog to ChangeLog and add
+         entry for 0.7.69
 
 2004-10-05 21:56  fmhess
 
 
 2004-10-05 21:35  fmhess
 
-       * comedi/drivers/ni_atmio.c (tags: branch-0_7-start, r0_7_70): fix
-         passing of bad argument to comedi_error()
+       * comedi/drivers/ni_atmio.c: fix passing of bad argument to
+         comedi_error()
 
 2004-10-05 20:47  fmhess
 
 
        * Makefile.am: modtool.in is gone
 
+2004-10-01 20:27  tag r0_7_69
+
 2004-10-01 20:27  fmhess
 
-       * m4/as-linux.m4 (tags: r0_7_69): check for modpost in two possible
-         locations
+       * m4/as-linux.m4: check for modpost in two possible locations
 
 2004-10-01 20:26  fmhess
 
-       * configure.ac (tags: r0_7_69): fix missing $ in check for depmod
+       * configure.ac: fix missing $ in check for depmod
 
 2004-09-29 08:28  fmhess
 
-       * comedi/drivers/amplc_pci230.c (tags: r0_7_69): fix for shared
-         interrupt bug from steve.sharples@nottingham.ac.uk
+       * comedi/drivers/amplc_pci230.c: fix for shared interrupt bug from
+         steve.sharples@nottingham.ac.uk
 
 2004-09-09 07:49  fmhess
 
-       * include/linux/comedi_rt.h (tags: r0_7_69): fix argument to
-         rtl_delay for rtlinux
+       * include/linux/comedi_rt.h: fix argument to rtl_delay for rtlinux
 
 2004-09-05 15:12  bporr
 
-       * comedi/drivers/usbdux.c (tags: r0_7_69): Typo in the synchonous
-         out command: in case of an error the synchronous _in_ command was
-         stopped instead of the out command.  Also added a short
-         description of the timer connections.
+       * comedi/drivers/usbdux.c: Typo in the synchonous out command: in
+         case of an error the synchronous _in_ command was stopped instead
+         of the out command.  Also added a short description of the timer
+         connections.
 
 2004-08-31 21:50  fmhess
 
 
 2004-08-31 20:56  fmhess
 
-       * comedi/drivers/ni_atmio.c (tags: r0_7_69): add error message when
-         no isapnp support is available
+       * comedi/drivers/ni_atmio.c: add error message when no isapnp
+         support is available
 
 2004-08-30 22:42  fmhess
 
-       * comedi/drivers/ni_mio_common.c (tags: r0_7_69): return error if a
-         command is run with no irq
+       * comedi/drivers/ni_mio_common.c: return error if a command is run
+         with no irq
 
 2004-08-18 18:36  bporr
 
 
 2004-08-05 20:48  fmhess
 
-       * comedi/drivers/das800.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69): fix deadlock on end-of-acquisition
+       * comedi/drivers/das800.c: fix deadlock on end-of-acquisition
 
 2004-08-01 21:13  fmhess
 
-       * comedi/drivers/cb_pcidas64.c (tags: r0_7_69): move setup of
-         subdevices after init of plx9080
+       * comedi/drivers/cb_pcidas64.c: move setup of subdevices after init
+         of plx9080
 
 2004-08-01 19:18  fmhess
 
 
 2004-07-25 15:05  fmhess
 
-       * comedi/kcomedilib/kcomedilib_main.c (tags: r0_7_69): fix
-         INSN_GTOD
+       * comedi/kcomedilib/kcomedilib_main.c: fix INSN_GTOD
 
 2004-07-20 20:10  fmhess
 
-       * comedi/: comedi_fops.c, drivers.c (tags: branch-0_7-start,
-         r0_7_70) (utags: r0_7_69): fix double-munging when bufinfo ioctl
-         is called in concert with read()s from /dev/comediX
+       * comedi/: comedi_fops.c, drivers.c: fix double-munging when
+         bufinfo ioctl is called in concert with read()s from /dev/comediX
 
 2004-07-19 19:24  fmhess
 
 
 2004-07-19 18:14  fmhess
 
-       * comedi/rt.c (tags: r0_7_69): fix prototype of
-         comedi_request_irq()
+       * comedi/rt.c: fix prototype of comedi_request_irq()
 
 2004-07-17 21:03  fmhess
 
-       * comedi/drivers/: ni_atmio.c, ni_mio_cs.c (tags: branch-0_7-start,
-         r0_7_70, r0_7_69), ni_pcimio.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69): missed some locking that should have been converted to
-         use devpriv->window_lock
+       * comedi/drivers/: ni_atmio.c, ni_mio_cs.c, ni_pcimio.c: missed
+         some locking that should have been converted to use
+         devpriv->window_lock
 
 2004-07-17 20:40  fmhess
 
-       * comedi/drivers/ni_6527.c (tags: r0_7_69): bug fix from
-         zharkov@vista-control.com (Eugene Zharkov)
+       * comedi/drivers/ni_6527.c: bug fix from  zharkov@vista-control.com
+         (Eugene Zharkov)
 
 2004-07-17 18:55  fmhess
 
-       * comedi/comedi_fops.c, include/linux/sched.h (tags: r0_7_69): list
-         10 insn limit on insn lists
+       * comedi/comedi_fops.c, include/linux/sched.h: list 10 insn limit
+         on insn lists
 
 2004-07-17 18:44  fmhess
 
 
 2004-07-11 21:51  fmhess
 
-       * INSTALL (tags: branch-0_7-start, r0_7_70, r0_7_69): a little
-         update for 2.6 kernels
+       * INSTALL: a little update for 2.6 kernels
 
 2004-07-11 21:28  fmhess
 
-       * m4/as-modtool.m4 (tags: r0_7_69): don't barf if Modules.symvers
-         doesn't exist
+       * m4/as-modtool.m4: don't barf if Modules.symvers doesn't exist
 
 2004-07-07 18:11  fmhess
 
 
 2004-06-27 20:51  fmhess
 
-       * Makefile.am (tags: r0_7_69): add autogen.sh to EXTRA_DIST
+       * Makefile.am: add autogen.sh to EXTRA_DIST
 
 2004-06-19 09:04  fmhess
 
-       * comedi/drivers/cb_pcidas.c (tags: r0_7_69): fix selection of
-         output channel for ao write insn (for boards with fifo)
+       * comedi/drivers/cb_pcidas.c: fix selection of output channel for
+         ao write insn (for boards with fifo)
 
 2004-06-15 08:17  fmhess
 
-       * comedi/drivers/ni_660x.c (tags: r0_7_69): removed obsolete
-         references to comedi_counter_unstable.h
+       * comedi/drivers/ni_660x.c: removed obsolete references to
+         comedi_counter_unstable.h
 
 2004-06-15 08:17  fmhess
 
-       * Contributors (tags: r0_7_69): added Luis Martinez for bug fix
+       * Contributors: added Luis Martinez for bug fix
 
 2004-06-08 20:19  fmhess
 
-       * comedi/drivers/quatech_daqp_cs.c (tags: branch-0_7-start,
-         r0_7_70, r0_7_69): bug fix from Luis Martínez
+       * comedi/drivers/quatech_daqp_cs.c: bug fix from Luis Martínez
          <luimarma@marcosa.e.telefonica.net>
 
 2004-06-05 12:55  fmhess
 
 2004-06-03 19:01  fmhess
 
-       * comedi/drivers/Makefile.am (tags: r0_7_69): patch from Emmanuel
-         PACAUD
+       * comedi/drivers/Makefile.am: patch from Emmanuel PACAUD
 
 2004-06-02 19:30  fmhess
 
 
 2004-06-02 15:00  ds
 
-       * comedi/Makefile.am (tags: r0_7_69), comedi/drivers/Makefile.am,
-         comedi/kcomedilib/Makefile.am (tags: r0_7_69), m4/as-linux.m4,
-         m4/as-modtool.m4: Upgrade as-linux.m4 and as-modtool.m4.  Fix
-         build system to handle changes.
+       * comedi/Makefile.am, comedi/drivers/Makefile.am,
+         comedi/kcomedilib/Makefile.am, m4/as-linux.m4, m4/as-modtool.m4:
+         Upgrade as-linux.m4 and as-modtool.m4.  Fix build system to
+         handle changes.
 
 2004-05-31 21:55  fmhess
 
-       * include/: linux/device.h, pcmcia/ds.h (utags: r0_7_69): fix
-         compiler warnings for 2.4
+       * include/: linux/device.h, pcmcia/ds.h: fix compiler warnings for
+         2.4
 
 2004-05-31 21:05  fmhess
 
 
 2004-05-31 20:52  fmhess
 
-       * comedi/drivers/ni_labpc_cs.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69): port to 2.6 pcmcia api
+       * comedi/drivers/ni_labpc_cs.c: port to 2.6 pcmcia api
 
 2004-05-31 20:35  fmhess
 
 
 2004-05-31 19:01  fmhess
 
-       * comedi/drivers/ni_daq_dio24.c (tags: r0_7_69): port to 2.6 pcmcia
-         api
+       * comedi/drivers/ni_daq_dio24.c: port to 2.6 pcmcia api
 
 2004-05-31 19:00  fmhess
 
-       * comedi/drivers/cb_das16_cs.c (tags: r0_7_69): fix if block that
-         got broken during port to 2.6
+       * comedi/drivers/cb_das16_cs.c: fix if block that got broken during
+         port to 2.6
 
 2004-05-31 18:31  fmhess
 
-       * comedi/drivers/das08_cs.c (tags: r0_7_69): port to 2.6 pcmcia api
+       * comedi/drivers/das08_cs.c: port to 2.6 pcmcia api
 
 2004-05-31 18:30  fmhess
 
 
 2004-04-21 01:56  fmhess
 
-       * comedi/drivers/: adl_pci9118.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69), cb_pcidas64.c, daqboard2000.c (tags: r0_7_69), dt3000.c
-         (tags: r0_7_69), icp_multi.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69), ii_pci20kc.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69), me_daq.c (tags: r0_7_69), ni_660x.c, pcm3730.c (tags:
-         branch-0_7-start, r0_7_70, r0_7_69), usbdux.c: fixes for 64bit
-         archs
+       * comedi/drivers/: adl_pci9118.c, cb_pcidas64.c, daqboard2000.c,
+         dt3000.c, icp_multi.c, ii_pci20kc.c, me_daq.c, ni_660x.c,
+         pcm3730.c, usbdux.c: fixes for 64bit archs
 
 2004-04-19 18:09  fmhess
 
        * comedi/drivers/cb_das16_cs.c, comedi/drivers/cb_pcidas64.c,
-         comedi/drivers/contec_pci_dio.c (tags: r0_7_69),
-         comedi/drivers/dt2814.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69), comedi/drivers/icp_multi.c,
-         comedi/drivers/ii_pci20kc.c, comedi/drivers/ni_mio_cs.c,
-         comedi/drivers/pcl812.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69), comedi/drivers/quatech_daqp_cs.c,
-         include/linux/comedidev.h (tags: r0_7_69): change dev->iobase to
-         unsigned long for 64 bit cpus
+         comedi/drivers/contec_pci_dio.c, comedi/drivers/dt2814.c,
+         comedi/drivers/icp_multi.c, comedi/drivers/ii_pci20kc.c,
+         comedi/drivers/ni_mio_cs.c, comedi/drivers/pcl812.c,
+         comedi/drivers/quatech_daqp_cs.c, include/linux/comedidev.h:
+         change dev->iobase to unsigned long for 64 bit cpus
 
 2004-04-19 17:56  fmhess
 
 
 2004-04-11 13:36  fmhess
 
-       * comedi/drivers/pcl818.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69): command support for pcl818 from Nils Juergens:
+       * comedi/drivers/pcl818.c: command support for pcl818 from Nils
+         Juergens:
 
          The streaming aquisition support has been dropped with the move
          from comedi_trig to comedi_command. The attached patch ports the
 
 2004-04-05 20:03  fmhess
 
-       * comedi/drivers/: mite.c (tags: r0_7_69), ni_mio_common.c: figured
-         out how i broke dma, and removed useless barrier
+       * comedi/drivers/: mite.c, ni_mio_common.c: figured out how i broke
+         dma, and removed useless barrier
 
 2004-04-05 18:47  fmhess
 
 
 2004-04-04 16:30  fmhess
 
-       * comedi/drivers/: mite.c, mite.h (tags: r0_7_69), ni_mio_common.c,
-         ni_pcidio.c (tags: r0_7_69): replaced some preprocessor defines
-         with enums and inline functions
+       * comedi/drivers/: mite.c, mite.h, ni_mio_common.c, ni_pcidio.c:
+         replaced some preprocessor defines with enums and inline
+         functions
 
 2004-04-04 14:19  fmhess
 
 2004-03-21 12:35  fmhess
 
        * comedi/drivers/: ni_atmio.c, ni_mio_common.c, ni_mio_cs.c,
-         ni_pcimio.c, ni_stc.h (tags: r0_7_69): add support for
-         comedi_poll when using mite dma, (needed to add another spinlock
-         to prevent races with interrupt handler).
+         ni_pcimio.c, ni_stc.h: add support for comedi_poll when using
+         mite dma, (needed to add another spinlock to prevent races with
+         interrupt handler).
 
 2004-03-21 12:11  fmhess
 
 
 2004-03-21 12:10  fmhess
 
-       * comedi/kcomedilib/: get.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69), kcomedilib_main.c: don't force various bits in cb_mask
-         when command is executed, and automaticaly set TRIG_WAKE_EOS if
-         they are calling back on end of scan events
+       * comedi/kcomedilib/: get.c, kcomedilib_main.c: don't force various
+         bits in cb_mask when command is executed, and automaticaly set
+         TRIG_WAKE_EOS if they are calling back on end of scan events
 
 2004-03-21 12:08  fmhess
 
 
 2004-03-14 22:27  fmhess
 
-       * comedi/drivers/adv_pci_dio.c (tags: r0_7_69): fix register offset
-         problems noted by Henk van Rooy <H.W.A.M.v.Rooy@tue.nl>
+       * comedi/drivers/adv_pci_dio.c: fix register offset problems noted
+         by Henk van Rooy <H.W.A.M.v.Rooy@tue.nl>
 
 2004-03-13 11:43  fmhess
 
 
 2004-03-02 18:51  fmhess
 
-       * m4/rtai.m4 (tags: branch-0_7-start, r0_7_70, r0_7_69): update
-         configure help to suggest using rtai installation or build dir
-         instead of source dir.
+       * m4/rtai.m4: update configure help to suggest using rtai
+         installation or build dir instead of source dir.
 
 2004-03-01 18:31  fmhess
 
 
 2004-02-23 16:19  ds
 
-       * comedi/drivers/: pcl816.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69), pcl818.c: disable RTC code
+       * comedi/drivers/: pcl816.c, pcl818.c: disable RTC code
 
 2004-02-21 10:46  fmhess
 
-       * comedi/drivers/das08.c (tags: r0_7_69): fix for return value of
-         config insn from Salvador Eduardo Tropea <salvador@inti.gov.ar>
+       * comedi/drivers/das08.c: fix for return value of config insn from
+         Salvador Eduardo Tropea <salvador@inti.gov.ar>
 
 2004-02-21 10:38  fmhess
 
 
 2004-02-13 18:50  fmhess
 
-       * comedi/drivers/: das16.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69), ni_mio_common.c: fix compilation with kernels using
-         dynamic hz patch
+       * comedi/drivers/: das16.c, ni_mio_common.c: fix compilation with
+         kernels using dynamic hz patch
 
 2004-02-10 18:18  fmhess
 
 
 2004-02-07 16:57  fmhess
 
-       * comedi/drivers/me4000.c (tags: r0_7_69): fix for compiler
-         warnings from Salvador Eduardo Tropea <salvador@inti.gov.ar>
+       * comedi/drivers/me4000.c: fix for compiler warnings from Salvador
+         Eduardo Tropea <salvador@inti.gov.ar>
 
 2004-02-07 16:31  fmhess
 
 
 2004-02-03 18:13  fmhess
 
-       * Contributors, comedi/drivers/das08.c, comedi/drivers/das08.h
-         (tags: r0_7_73, r0_7_72, r0_7_71, branch-0_7-end,
-         branch-0_7-start, r0_7_70, r0_7_69), include/linux/comedi.h
-         (tags: r0_7_69): i8254 counter patch from Salvador Eduardo Tropea
-         <salvador@inti.gov.ar>
+       * Contributors, comedi/drivers/das08.c, comedi/drivers/das08.h,
+         include/linux/comedi.h: i8254 counter patch from Salvador Eduardo
+         Tropea <salvador@inti.gov.ar>
 
 2004-01-31 18:29  fmhess
 
 
 2004-01-31 17:27  fmhess
 
-       * comedi/drivers/rtd520.c (tags: r0_7_69): TRIG_WAKE_EOS and
-         CMD_EV_SCAN_END are not interchangeable
+       * comedi/drivers/rtd520.c: TRIG_WAKE_EOS and CMD_EV_SCAN_END are
+         not interchangeable
 
 2004-01-31 17:26  fmhess
 
 
 2004-01-24 11:56  fmhess
 
-       * include/linux/pci.h (tags: r0_7_69): pci_for_each_device fix for
-         2.6 from Bernd Porr
+       * include/linux/pci.h: pci_for_each_device fix for 2.6 from Bernd
+         Porr
 
 2004-01-24 11:48  fmhess
 
 
 2004-01-11 19:45  fmhess
 
-       * m4/: as-linux.m4, as-modtool.m4, rtai.m4, rtlinux.m4 (tags:
-         r0_7_74, r0_7_73, r0_7_72, r0_7_71, branch-0_7-end,
-         branch-0_7-start, r0_7_70, r0_7_69): added some more m4 quoting
-         to get rid of automake1.8 warnings
+       * m4/: as-linux.m4, as-modtool.m4, rtai.m4, rtlinux.m4: added some
+         more m4 quoting to get rid of automake1.8 warnings
 
 2004-01-11 19:32  fmhess
 
 
 2004-01-11 18:27  fmhess
 
-       * include/linux/vmalloc.h (tags: branch-0_7-end, branch-0_7-start,
-         r0_7_70, r0_7_69): band aid from Bernd Porr for VMALLOC_VMADDR
-         macro getting dropped in 2.6 (from kernel changelog this happened
-         because it did nothing).
+       * include/linux/vmalloc.h: band aid from Bernd Porr for
+         VMALLOC_VMADDR macro getting dropped in 2.6 (from kernel
+         changelog this happened because it did nothing).
 
 2004-01-11 18:07  fmhess
 
 
 2003-12-21 18:47  fmhess
 
-       * include/linux/usb.h (tags: r0_7_69): new compat header
+       * include/linux/usb.h: new compat header
 
 2003-12-21 12:10  fmhess
 
 
 2003-12-19 17:47  ds
 
-       * include/linux/interrupt.h (tags: r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69): Linux-2.4.23
-         has the new interrupt prototypes
+       * include/linux/interrupt.h: Linux-2.4.23 has the new interrupt
+         prototypes
 
 2003-12-17 22:38  ds
 
 
 2003-12-06 14:34  fmhess
 
-       * comedi/comedi_fops.c, comedi/drivers.c, include/linux/kdev_t.h
-         (tags: branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69): fix
-         for changes in linux 2.6 kdev_t.h
+       * comedi/comedi_fops.c, comedi/drivers.c, include/linux/kdev_t.h:
+         fix for changes in linux 2.6 kdev_t.h
 
 2003-12-06 11:41  fmhess
 
 
 2003-11-26 16:36  ds
 
-       * comedi/drivers/adv_pci1710.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69): Fixes from Nils Juergens <ju@isf.rwth-aachen.de>
+       * comedi/drivers/adv_pci1710.c: Fixes from Nils Juergens
+         <ju@isf.rwth-aachen.de>
 
 2003-11-23 14:12  fmhess
 
-       * comedi/drivers/comedi_counter_unstable.h (tags: r0_7_74, r0_7_73,
-         r0_7_72, r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70,
-         r0_7_69): valid bit should be 3rd bit, not 0x3 value
+       * comedi/drivers/comedi_counter_unstable.h: valid bit should be 3rd
+         bit, not 0x3 value
 
 2003-11-23 13:55  fmhess
 
 
 2003-11-23 13:52  fmhess
 
-       * comedi/drivers/comedi_fc.h (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69):
-         check if we've already been included
+       * comedi/drivers/comedi_fc.h: check if we've already been included
 
 2003-11-20 21:27  fmhess
 
 
 2003-11-20 21:22  fmhess
 
-       * comedi/drivers/ni_labpc.h (tags: r0_7_71, branch-0_7-end,
-         branch-0_7-start, r0_7_70, r0_7_69): declare labpc_cs_boards as
-         extern
+       * comedi/drivers/ni_labpc.h: declare labpc_cs_boards as extern
 
 2003-11-19 21:28  fmhess
 
 
 2003-11-17 15:12  ds
 
-       * README.CVS (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69): Add some
-         notes about compiling from CVS
+       * README.CVS: Add some notes about compiling from CVS
 
 2003-11-15 19:17  fmhess
 
 
 2003-10-22 20:44  fmhess
 
-       * comedi/drivers/: adl_pci9111.c, cb_pcidda.c (utags: r0_7_69):
-         some pci_request_regions() tweaks, and set DUMMY_BIT on writes to
+       * comedi/drivers/: adl_pci9111.c, cb_pcidda.c: some
+         pci_request_regions() tweaks, and set DUMMY_BIT on writes to
          calibration reg 2 in cb_pcidda.c
 
 2003-10-22 20:12  ds
 
 2003-10-18 10:13  fmhess
 
-       * comedi/drivers/: adl_pci9118.c, das16.c, gsc_hpdi.c (tags:
-         r0_7_69), ni_mio_common.c: get rid of underscores in my byte
-         swapping calls
+       * comedi/drivers/: adl_pci9118.c, das16.c, gsc_hpdi.c,
+         ni_mio_common.c: get rid of underscores in my byte swapping calls
 
 2003-10-17 12:42  fmhess
 
 
 2003-10-13 16:12  fmhess
 
-       * comedi/drivers/multiq3.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69): fix ai munging
+       * comedi/drivers/multiq3.c: fix ai munging
 
 2003-10-13 14:47  fmhess
 
 
 2003-10-01 18:44  ds
 
-       * include/linux/isapnp.h (tags: branch-0_7-end, branch-0_7-start,
-         r0_7_70, r0_7_69): Disable isapnp on 2.6 (temporarily)
+       * include/linux/isapnp.h: Disable isapnp on 2.6 (temporarily)
 
 2003-10-01 18:43  ds
 
 
 2003-09-30 21:22  fmhess
 
-       * comedi/drivers/: ni_labpc.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69), ni_labpc.h, ni_labpc_cs.c: fix loading of counters on
-         memory-mapped io boards (pci-1200)
+       * comedi/drivers/: ni_labpc.c, ni_labpc.h, ni_labpc_cs.c: fix
+         loading of counters on memory-mapped io boards (pci-1200)
 
 2003-09-30 09:13  fmhess
 
 2003-09-18 17:27  ds
 
        * .cvsignore, comedi/.cvsignore, comedi/drivers/.cvsignore,
-         comedi/kcomedilib/.cvsignore (utags: branch-0_7-end,
-         branch-0_7-start, r0_7_69, r0_7_70, r0_7_71, r0_7_72, r0_7_73,
-         r0_7_74): ignore some files
+         comedi/kcomedilib/.cvsignore: ignore some files
 
 2003-09-18 17:14  ds
 
 
 2003-09-18 15:10  ds
 
-       * comedi/drivers/: me4000.c, me4000.h (tags: r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69), me4000_fw.h:
-         new driver
+       * comedi/drivers/: me4000.c, me4000.h, me4000_fw.h: new driver
 
 2003-09-16 20:18  fmhess
 
 
 2003-09-16 14:36  fmhess
 
-       * comedi/drivers/: cb_pcidas64.c, plx9080.h (tags:
-         branch-0_7-start, r0_7_70, r0_7_69): fixes for big endian
+       * comedi/drivers/: cb_pcidas64.c, plx9080.h: fixes for big endian
          machines
 
 2003-09-16 11:19  fmhess
 2003-09-15 17:33  fmhess
 
        * comedi/comedi_fops.c, comedi/drivers.c,
-         comedi/drivers/comedi_fc.c (tags: r0_7_69),
-         comedi/drivers/dt282x.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69), comedi/drivers/ni_labpc.c,
-         comedi/drivers/ni_mio_common.c, comedi/drivers/rti800.c (tags:
-         branch-0_7-start, r0_7_70, r0_7_69),
-         comedi/kcomedilib/kcomedilib_main.c, include/linux/comedidev.h:
-         Fully support munging in core.  Still need to check munging for
-         kcomedilib though.
+         comedi/drivers/comedi_fc.c, comedi/drivers/dt282x.c,
+         comedi/drivers/ni_labpc.c, comedi/drivers/ni_mio_common.c,
+         comedi/drivers/rti800.c, comedi/kcomedilib/kcomedilib_main.c,
+         include/linux/comedidev.h: Fully support munging in core.  Still
+         need to check munging for kcomedilib though.
 
 2003-09-15 17:21  fmhess
 
 
 2003-09-08 18:16  fmhess
 
-       * comedi/drivers/8253.h (tags: r0_7_69): change base address
-         variables to long, for 64 bit machines.
+       * comedi/drivers/8253.h: change base address variables to long, for
+         64 bit machines.
 
 2003-09-08 14:16  fmhess
 
 
 2003-08-11 19:51  fmhess
 
-       * comedi/: comedi_ksyms.c, kcomedilib/ksyms.c (tags: r0_7_73,
-         r0_7_72, r0_7_71) (utags: branch-0_7-end, branch-0_7-start,
-         r0_7_69, r0_7_70): fix compiler warning about redefinition of
-         EXPORT_SYMTAB with old Makefiles
+       * comedi/: comedi_ksyms.c, kcomedilib/ksyms.c: fix compiler warning
+         about redefinition of EXPORT_SYMTAB with old Makefiles
 
 2003-08-11 18:25  ds
 
          APCI1710_Dig_io.h, APCI1710_INCCPT.c, APCI1710_INCCPT.h,
          APCI1710_Inp_cpt.c, APCI1710_Inp_cpt.h, APCI1710_Pwm.c,
          APCI1710_Pwm.h, APCI1710_Ssi.c, APCI1710_Ssi.h, APCI1710_Tor.c,
-         APCI1710_Tor.h, APCI1710_Ttl.c, APCI1710_Ttl.h, Makefile.am
-         (tags: branch-0_7-end), addi_amcc_s5933.h, addi_common.c,
-         addi_common.h, addi_eeprom.c, amcc_s5933_58.h (tags: r0_7_74,
-         r0_7_73, r0_7_72, r0_7_71, branch-0_7-end), hwdrv_APCI1710.c,
-         hwdrv_APCI1710.h, hwdrv_apci035.c, hwdrv_apci035.h,
-         hwdrv_apci1032.c, hwdrv_apci1032.h, hwdrv_apci1500.c,
-         hwdrv_apci1500.h, hwdrv_apci1516.c, hwdrv_apci1516.h,
-         hwdrv_apci1564.c, hwdrv_apci1564.h, hwdrv_apci2016.c,
-         hwdrv_apci2016.h, hwdrv_apci2032.c, hwdrv_apci2032.h,
-         hwdrv_apci2200.c, hwdrv_apci2200.h, hwdrv_apci3120.c,
-         hwdrv_apci3120.h, hwdrv_apci3200.c, hwdrv_apci3200.h,
-         hwdrv_apci3501.c, hwdrv_apci3501.h (utags: branch-0_7-start,
-         r0_7_69, r0_7_70): driver(s) from ADDI-DATA
+         APCI1710_Tor.h, APCI1710_Ttl.c, APCI1710_Ttl.h, Makefile.am,
+         addi_amcc_s5933.h, addi_common.c, addi_common.h, addi_eeprom.c,
+         amcc_s5933_58.h, hwdrv_APCI1710.c, hwdrv_APCI1710.h,
+         hwdrv_apci035.c, hwdrv_apci035.h, hwdrv_apci1032.c,
+         hwdrv_apci1032.h, hwdrv_apci1500.c, hwdrv_apci1500.h,
+         hwdrv_apci1516.c, hwdrv_apci1516.h, hwdrv_apci1564.c,
+         hwdrv_apci1564.h, hwdrv_apci2016.c, hwdrv_apci2016.h,
+         hwdrv_apci2032.c, hwdrv_apci2032.h, hwdrv_apci2200.c,
+         hwdrv_apci2200.h, hwdrv_apci3120.c, hwdrv_apci3120.h,
+         hwdrv_apci3200.c, hwdrv_apci3200.h, hwdrv_apci3501.c,
+         hwdrv_apci3501.h: driver(s) from ADDI-DATA
 
 2003-08-08 18:01  fmhess
 
 
 2003-08-08 14:21  fmhess
 
-       * scripts/linux_flags-2.6/Makefile (tags: r0_7_69): no reason to
-         mangle together LD and LDFLAGS just to be like earlier kernels
-         now.
+       * scripts/linux_flags-2.6/Makefile: no reason to mangle together LD
+         and LDFLAGS just to be like earlier kernels now.
 
 2003-08-08 14:18  fmhess
 
 
 2003-08-06 21:02  ds
 
-       * autogen.sh (tags: r0_7_69): pass command line options to
-         configure
+       * autogen.sh: pass command line options to configure
 
 2003-08-06 21:01  ds
 
 
 2003-08-05 18:39  fmhess
 
-       * Makefile.modbuild, scripts/linux_flags/Makefile (tags: r0_7_69),
+       * Makefile.modbuild, scripts/linux_flags/Makefile,
          scripts/linux_flags-2.6/Makefile: config/modversions.h and
          linux/modversions.h are not equivalent
 
 2003-08-05 18:38  fmhess
 
-       * scripts/dep.linux (tags: r0_7_69): override MODVERDIR
+       * scripts/dep.linux: override MODVERDIR
 
 2003-08-05 16:02  fmhess
 
 
 2003-08-05 15:23  fmhess
 
-       * include/linux/module.h (tags: branch-0_7-end, branch-0_7-start,
-         r0_7_70, r0_7_69): fix for NULL undefined?
+       * include/linux/module.h: fix for NULL undefined?
 
 2003-08-05 14:55  fmhess
 
 
 2003-08-05 14:28  fmhess
 
-       * include/: asm/dma.h (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69), linux/fs.h
-         (tags: branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69),
-         linux/init.h (tags: branch-0_7-end, branch-0_7-start, r0_7_70,
-         r0_7_69), linux/irq.h (tags: r0_7_70, r0_7_69), linux/isapnp.h,
-         linux/kmod.h (tags: branch-0_7-end, branch-0_7-start, r0_7_70,
-         r0_7_69), linux/mm.h (tags: r0_7_69), linux/module.h,
-         linux/pci.h, linux/poll.h (tags: branch-0_7-end,
-         branch-0_7-start, r0_7_70, r0_7_69), linux/sched.h, linux/slab.h
-         (tags: branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69),
-         linux/spinlock.h (tags: branch-0_7-end, branch-0_7-start,
-         r0_7_70, r0_7_69), linux/timer.h (tags: branch-0_7-end,
-         branch-0_7-start, r0_7_70, r0_7_69), linux/vmalloc.h: replace all
-         hex codes with KERNEL_VERSION() for clairity
+       * include/: asm/dma.h, linux/fs.h, linux/init.h, linux/irq.h,
+         linux/isapnp.h, linux/kmod.h, linux/mm.h, linux/module.h,
+         linux/pci.h, linux/poll.h, linux/sched.h, linux/slab.h,
+         linux/spinlock.h, linux/timer.h, linux/vmalloc.h: replace all hex
+         codes with KERNEL_VERSION() for clairity
 
 2003-08-04 23:46  ds
 
-       * include/linux/version.h (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69):
-         Comedi's version is now in config.h
+       * include/linux/version.h: Comedi's version is now in config.h
 
 2003-08-04 23:37  ds
 
 
 2003-08-04 23:32  ds
 
-       * comedi/drivers/: adl_pci9111.c, adv_pci1710.c, amplc_pc236.c
-         (tags: r0_7_69), amplc_pci230.c, cb_pcidas.c, cb_pcidas64.c,
-         ni_pcidio.c: Change IRQ_HANDLED to 1 when used as an rvalue
+       * comedi/drivers/: adl_pci9111.c, adv_pci1710.c, amplc_pc236.c,
+         amplc_pci230.c, cb_pcidas.c, cb_pcidas64.c, ni_pcidio.c: Change
+         IRQ_HANDLED to 1 when used as an rvalue
 
 2003-08-04 23:30  ds
 
 
 2003-08-04 16:23  fmhess
 
-       * comedi/drivers/comedi_test.c (tags: r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69): bugfix from
-         Steven Jenkins
+       * comedi/drivers/comedi_test.c: bugfix from Steven Jenkins
 
 2003-08-04 15:10  fmhess
 
 
 2003-08-04 14:48  fmhess
 
-       * comedi/drivers/comedi_parport.c (tags: r0_7_69): update to 2.6
-         interrupt handler prototype
+       * comedi/drivers/comedi_parport.c: update to 2.6 interrupt handler
+         prototype
 
 2003-08-04 14:47  fmhess
 
 
        * comedi/drivers/: adl_pci9111.c, adl_pci9118.c, adv_pci1710.c,
          amplc_pc236.c, amplc_pci230.c, cb_das16_cs.c, cb_pcidas.c,
-         cb_pcidas64.c, daqboard2000.c, das16.c, das16m1.c (tags:
-         branch-0_7-start, r0_7_70, r0_7_69), das1800.c (tags:
-         branch-0_7-start, r0_7_70, r0_7_69), das6402.c (tags:
-         branch-0_7-start, r0_7_70, r0_7_69), das800.c, dt2814.c,
-         dt282x.c, dt3000.c, gsc_hpdi.c, icp_multi.c, ni_6527.c,
-         ni_at_a2150.c (tags: branch-0_7-start, r0_7_70, r0_7_69),
-         ni_atmio16d.c (tags: branch-0_7-start, r0_7_70, r0_7_69),
+         cb_pcidas64.c, daqboard2000.c, das16.c, das16m1.c, das1800.c,
+         das6402.c, das800.c, dt2814.c, dt282x.c, dt3000.c, gsc_hpdi.c,
+         icp_multi.c, ni_6527.c, ni_at_a2150.c, ni_atmio16d.c,
          ni_daq_dio24.c, ni_labpc.c, ni_labpc_cs.c, ni_mio_common.c,
-         ni_mio_cs.c, ni_pcidio.c, pcl711.c (tags: branch-0_7-start,
-         r0_7_70, r0_7_69), pcl812.c, pcl816.c, pcl818.c,
+         ni_mio_cs.c, ni_pcidio.c, pcl711.c, pcl812.c, pcl816.c, pcl818.c,
          quatech_daqp_cs.c, rtd520.c, rti800.c: new interrupt handler
          prototype for 2.6, plus some other 2.6 issues
 
 2003-08-03 21:06  fmhess
 
-       * include/: asm/pgtable.h (tags: r0_7_69), linux/comedidev.h,
-         linux/devfs_fs_kernel.h (tags: r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69),
-         linux/interrupt.h, linux/module.h, linux/pci.h, linux/wrapper.h
-         (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71, branch-0_7-end,
-         branch-0_7-start, r0_7_70, r0_7_69): more 2.6 compatibility
+       * include/: asm/pgtable.h, linux/comedidev.h,
+         linux/devfs_fs_kernel.h, linux/interrupt.h, linux/module.h,
+         linux/pci.h, linux/wrapper.h: more 2.6 compatibility
 
 2003-08-03 18:23  fmhess
 
 
 2003-07-16 12:48  fmhess
 
-       * README (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71, branch-0_7-end,
-         branch-0_7-start, r0_7_70, r0_7_69): update web page url
+       * README: update web page url
 
 2003-07-10 18:08  fmhess
 
 
 2003-07-04 16:00  fmhess
 
-       * comedi/: Config.in (tags: r0_7_71, branch-0_7-end,
-         branch-0_7-start, r0_7_70, r0_7_69), drivers/Makefile.in,
-         drivers/das08.c, drivers/das08.h, drivers/das08_cs.c,
-         drivers/ni_labpc.h: split PCMCIA support out of das08.o driver
+       * comedi/: Config.in, drivers/Makefile.in, drivers/das08.c,
+         drivers/das08.h, drivers/das08_cs.c, drivers/ni_labpc.h: split
+         PCMCIA support out of das08.o driver
 
 2003-07-04 14:50  fmhess
 
 
 2003-07-02 18:58  ds
 
-       * scripts/dep.rtai (tags: r0_7_69): Simple patch to get Comedi to
-         compile with the experimential version of RTAI.
+       * scripts/dep.rtai: Simple patch to get Comedi to compile with the
+         experimential version of RTAI.
 
 2003-07-01 11:43  fmhess
 
 
        * include/linux/module.h: added EXPORT_SYMBOL_GPL() compat macro
 
+2003-06-17 21:39  tag r0_7_67x
+
 2003-06-17 21:39  ds
 
-       * Contributors (tags: r0_7_67x): Add a bunch of people
+       * Contributors: Add a bunch of people
 
 2003-06-17 21:27  ds
 
-       * scripts/config.dist (tags: r0_7_69, r0_7_67x): update for new
-         drivers
+       * scripts/config.dist: update for new drivers
 
 2003-06-17 21:25  ds
 
-       * scripts/check_driver (tags: r0_7_71, branch-0_7-end,
-         branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x): alloc_subdevices()
-         changed.
+       * scripts/check_driver: alloc_subdevices() changed.
 
 2003-06-17 21:25  ds
 
-       * comedi/drivers/ni_6527.c (tags: r0_7_67x): fix driver name in doc
-         block
+       * comedi/drivers/ni_6527.c: fix driver name in doc block
 
 2003-06-17 21:25  ds
 
-       * comedi/drivers/adv_pci_dio.c (tags: r0_7_67x): Add
-         subdev_8255_cleanup()
+       * comedi/drivers/adv_pci_dio.c: Add subdev_8255_cleanup()
 
 2003-06-17 21:24  ds
 
-       * comedi/drivers/Makefile.in (tags: r0_7_67x): Add ni_660x
+       * comedi/drivers/Makefile.in: Add ni_660x
 
 2003-06-17 21:24  ds
 
-       * comedi/Config.in (tags: r0_7_67x): Add NI_660X
+       * comedi/Config.in: Add NI_660X
 
 2003-06-17 21:22  ds
 
-       * comedi/drivers/ni_660x.c (tags: r0_7_67x): Found this wandering
-         around.  Figured it should go in CVS.
+       * comedi/drivers/ni_660x.c: Found this wandering around.  Figured
+         it should go in CVS.
 
 2003-06-12 12:10  fmhess
 
-       * comedi/comedi_fops.c, include/linux/mm.h (utags: r0_7_67x): fix
-         for new 2.5 remap_page_range() prototype
+       * comedi/comedi_fops.c, include/linux/mm.h: fix for new 2.5
+         remap_page_range() prototype
 
 2003-06-09 19:46  fmhess
 
-       * comedi/drivers/cb_pcidas.c (tags: r0_7_67x): trying to fix some
-         pci-das1602/16 calibration weirdness
+       * comedi/drivers/cb_pcidas.c: trying to fix some pci-das1602/16
+         calibration weirdness
 
 2003-06-06 14:58  ds
 
 
 2003-06-05 15:52  fmhess
 
-       * comedi/drivers/: ni_mio_common.c, ni_stc.h (utags: r0_7_67x):
-         make single-scan code work for 611x too
+       * comedi/drivers/: ni_mio_common.c, ni_stc.h: make single-scan code
+         work for 611x too
 
 2003-06-05 15:52  fmhess
 
 
 2003-05-29 20:23  fmhess
 
-       * scripts/dep.linux (tags: r0_7_67x): added an error check that
-         catches common case of 'make config' failing to get compile flags
-         from kernel source.
+       * scripts/dep.linux: added an error check that catches common case
+         of 'make config' failing to get compile flags from kernel source.
 
 2003-05-29 18:34  fmhess
 
 
 2003-05-27 13:28  ds
 
-       * Contributors, Documentation/Configure.help (tags: r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x),
-         Documentation/Configure.help.append (tags: r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x),
-         comedi/Config.in, comedi/comedi_fops.c, include/linux/comedidev.h
-         (tags: r0_7_67x): New driver from Michal Dobes
+       * Contributors, Documentation/Configure.help,
+         Documentation/Configure.help.append, comedi/Config.in,
+         comedi/comedi_fops.c, include/linux/comedidev.h: New driver from
+         Michal Dobes
 
 2003-05-27 13:27  ds
 
 
 2003-05-27 13:22  ds
 
-       * comedi/drivers/: adl_pci9118.c, adv_pci1710.c, amcc_s5933.c
-         (tags: r0_7_69), ni_atmio16d.c, pcl724.c (tags: branch-0_7-start,
-         r0_7_70, r0_7_69), pcl812.c, pcl816.c, pcl818.c, amcc_s5933.h
-         (tags: branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69)
-         (utags: r0_7_67x): majkl@tesnet.cz -> dobes@tesnet.cz
+       * comedi/drivers/: adl_pci9118.c, adv_pci1710.c, amcc_s5933.c,
+         ni_atmio16d.c, pcl724.c, pcl812.c, pcl816.c, pcl818.c,
+         amcc_s5933.h: majkl@tesnet.cz -> dobes@tesnet.cz
 
 2003-05-27 13:19  ds
 
-       * comedi/drivers/icp_multi.c (tags: r0_7_67x): update documentation
+       * comedi/drivers/icp_multi.c: update documentation
 
 2003-05-25 23:50  fmhess
 
 
 2003-05-23 19:04  fmhess
 
-       * comedi/drivers/: ni_mio_common.c, ni_pcimio.c (tags: r0_7_67x),
-         ni_stc.h: still trying to fix 6110 initialization problem, plus a
-         tiny bit of random cleanup
+       * comedi/drivers/: ni_mio_common.c, ni_pcimio.c, ni_stc.h: still
+         trying to fix 6110 initialization problem, plus a tiny bit of
+         random cleanup
 
 2003-05-23 15:15  fmhess
 
-       * comedi/drivers/cb_pcidas64.c (tags: r0_7_67x): fix new ai range
-         code
+       * comedi/drivers/cb_pcidas64.c: fix new ai range code
 
 2003-05-23 15:11  fmhess
 
 
 2003-05-19 16:26  fmhess
 
-       * comedi/drivers/ni_atmio.c (tags: r0_7_67x): fix segfault noted by
-         calin calianu
+       * comedi/drivers/ni_atmio.c: fix segfault noted by calin calianu
 
 2003-05-15 20:39  fmhess
 
 
 2003-05-15 13:55  ds
 
-       * comedi/drivers/comedi_test.c (tags: r0_7_67x): Patch to add AO
-         subdevice from "Calin A. Culianu" <calin@ajvar.org>
+       * comedi/drivers/comedi_test.c: Patch to add AO subdevice from
+         "Calin A. Culianu" <calin@ajvar.org>
 
 2003-05-14 14:00  ds
 
-       * scripts/dep.rtlinux (tags: r0_7_69, r0_7_67x): Patch from "Calin
-         A. Culianu" <calin@ajvar.org>
+       * scripts/dep.rtlinux: Patch from "Calin A. Culianu"
+         <calin@ajvar.org>
 
 2003-05-12 14:04  fmhess
 
 
 2003-05-12 14:03  fmhess
 
-       * comedi/drivers/ni_labpc.c (tags: r0_7_67x): change address
-         parameter to unsigned long for inb/outb/readb/writeb wrappers
+       * comedi/drivers/ni_labpc.c: change address parameter to unsigned
+         long for inb/outb/readb/writeb wrappers
 
 2003-05-12 14:00  fmhess
 
 
 2003-05-05 15:09  ds
 
-       * comedi/drivers/ni_670x.c (tags: r0_7_69, r0_7_67x): PCI code for
-         PCI-6704
+       * comedi/drivers/ni_670x.c: PCI code for PCI-6704
 
 2003-05-03 10:56  fmhess
 
 
 2003-04-28 13:26  fmhess
 
-       * comedi/drivers.c (tags: r0_7_67x): re-fix suse brokeness
+       * comedi/drivers.c: re-fix suse brokeness
 
 2003-04-28 12:04  fmhess
 
-       * comedi/drivers/ni_mio_cs.c (tags: r0_7_67x): daqcard 6062e
-         definitely has an ad8804 caldac
+       * comedi/drivers/ni_mio_cs.c: daqcard 6062e definitely has an
+         ad8804 caldac
 
 2003-04-27 13:24  fmhess
 
 
 2003-04-11 13:09  fmhess
 
-       * comedi/kcomedilib/data.c (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69,
-         r0_7_67x): added include of comedidev.h for comedi_udelay()
+       * comedi/kcomedilib/data.c: added include of comedidev.h for
+         comedi_udelay()
 
 2003-04-02 12:12  fmhess
 
 
 2003-03-27 16:08  fmhess
 
-       * comedi/kcomedilib/: data.c, kcomedilib_main.c (tags: r0_7_67x):
-         replaced udelay with comedi_udelay
+       * comedi/kcomedilib/: data.c, kcomedilib_main.c: replaced udelay
+         with comedi_udelay
 
 2003-03-27 16:00  fmhess
 
-       * comedi/drivers/adl_pci9111.c (tags: r0_7_67x),
-         comedi/drivers/adl_pci9118.c, comedi/drivers/adv_pci1710.c,
-         comedi/drivers/cb_das16_cs.c (tags: r0_7_67x),
+       * comedi/drivers/adl_pci9111.c, comedi/drivers/adl_pci9118.c,
+         comedi/drivers/adv_pci1710.c, comedi/drivers/cb_das16_cs.c,
          comedi/drivers/cb_pcidas.c, comedi/drivers/cb_pcidas64.c,
-         comedi/drivers/daqboard2000.c (tags: r0_7_67x),
-         comedi/drivers/das800.c (tags: r0_7_67x), comedi/drivers/dt2801.c
-         (tags: branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x),
-         comedi/drivers/dt2811.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69, r0_7_67x), comedi/drivers/dt2814.c (tags: r0_7_67x),
-         comedi/drivers/dt2815.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69, r0_7_67x), comedi/drivers/dt282x.c (tags: r0_7_67x),
-         comedi/drivers/dt3000.c (tags: r0_7_67x), comedi/drivers/fl512.c
-         (tags: r0_7_69, r0_7_67x), comedi/drivers/gsc_hpdi.c (tags:
-         r0_7_67x), comedi/drivers/icp_multi.c,
-         comedi/drivers/ni_at_a2150.c (tags: r0_7_67x),
+         comedi/drivers/daqboard2000.c, comedi/drivers/das800.c,
+         comedi/drivers/dt2801.c, comedi/drivers/dt2811.c,
+         comedi/drivers/dt2814.c, comedi/drivers/dt2815.c,
+         comedi/drivers/dt282x.c, comedi/drivers/dt3000.c,
+         comedi/drivers/fl512.c, comedi/drivers/gsc_hpdi.c,
+         comedi/drivers/icp_multi.c, comedi/drivers/ni_at_a2150.c,
          comedi/drivers/ni_labpc.c, comedi/drivers/ni_mio_common.c,
-         comedi/drivers/ni_pcimio.c, comedi/drivers/pcl711.c (tags:
-         r0_7_67x), comedi/drivers/pcl812.c, comedi/drivers/pcl816.c,
-         comedi/drivers/pcl818.c, comedi/drivers/plx9080.h (tags:
-         r0_7_67x), comedi/drivers/rtd520.c (tags: r0_7_67x),
-         comedi/drivers/rti800.c (tags: r0_7_67x),
-         comedi/drivers/serial2002.c (tags: branch-0_7-end,
-         branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x),
-         include/linux/comedi_rt.h (tags: r0_7_67x): replaced all udelay()
-         calls with comedi_udelay() wrapper for RT safety
+         comedi/drivers/ni_pcimio.c, comedi/drivers/pcl711.c,
+         comedi/drivers/pcl812.c, comedi/drivers/pcl816.c,
+         comedi/drivers/pcl818.c, comedi/drivers/plx9080.h,
+         comedi/drivers/rtd520.c, comedi/drivers/rti800.c,
+         comedi/drivers/serial2002.c, include/linux/comedi_rt.h: replaced
+         all udelay() calls with comedi_udelay() wrapper for RT safety
 
 2003-03-27 15:46  fmhess
 
-       * include/linux/pci.h (tags: r0_7_67x): added pci_find_subsys()
-         compatibility stub.  changed extern inline functions to static
-         inline
+       * include/linux/pci.h: added pci_find_subsys() compatibility stub.
+         changed extern inline functions to static inline
 
 2003-03-27 12:02  fmhess
 
        * comedi/kcomedilib/get.c, comedi/kcomedilib/ksyms.c,
-         include/linux/comedilib.h (tags: r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69) (utags:
-         r0_7_67x): added comedi_get_buffer_offset() to kcomedilib
+         include/linux/comedilib.h: added comedi_get_buffer_offset() to
+         kcomedilib
 
 2003-03-27 11:54  fmhess
 
 
 2003-03-12 10:58  fmhess
 
-       * comedi/drivers/: amplc_pci230.c, cb_pcimdas.c (tags: r0_7_69),
-         das08.c (utags: r0_7_67x): ripped out some settling delays
+       * comedi/drivers/: amplc_pci230.c, cb_pcimdas.c, das08.c: ripped
+         out some settling delays
 
 2003-03-11 17:23  fmhess
 
 
 2003-03-10 17:23  fmhess
 
-       * comedi/drivers/ni_atmio.c, include/linux/isapnp.h (tags:
-         r0_7_67x): isapnp.h compat header didn't work out as nicely as I
-         hoped
+       * comedi/drivers/ni_atmio.c, include/linux/isapnp.h: isapnp.h
+         compat header didn't work out as nicely as I hoped
 
 2003-03-10 16:38  fmhess
 
 
 2003-02-28 12:17  fmhess
 
-       * comedi/drivers/das16.c (tags: r0_7_67x): try to fix some useless
-         warning messages with das16/330
+       * comedi/drivers/das16.c: try to fix some useless warning messages
+         with das16/330
 
 2003-02-27 12:30  fmhess
 
 
 2003-02-18 18:44  fmhess
 
-       * comedi/drivers/comedi_fc.c (tags: r0_7_67x): make end of scan
-         events correct for digital io
+       * comedi/drivers/comedi_fc.c: make end of scan events correct for
+         digital io
 
 2003-02-18 18:44  fmhess
 
 
 2003-02-15 13:35  fmhess
 
-       * comedi/drivers/8255.c (tags: r0_7_69, r0_7_67x),
-         comedi/drivers/adl_pci9111.c, comedi/drivers/adl_pci9118.c,
-         comedi/drivers/adv_pci1710.c, comedi/drivers/amplc_pc236.c (tags:
-         r0_7_67x), comedi/drivers/amplc_pc263.c (tags: r0_7_69,
-         r0_7_67x), comedi/drivers/amplc_pci230.c,
-         comedi/drivers/cb_das16_cs.c, comedi/drivers/cb_pcidas.c,
-         comedi/drivers/cb_pcidas64.c, comedi/drivers/cb_pcidda.c (tags:
-         r0_7_67x), comedi/drivers/cb_pcimdas.c,
-         comedi/drivers/cb_pcimdda.c (tags: r0_7_69, r0_7_67x),
-         comedi/drivers/comedi_parport.c (tags: r0_7_67x),
-         comedi/drivers/comedi_rt_timer.c (tags: r0_7_69, r0_7_67x),
-         comedi/drivers/comedi_test.c, comedi/drivers/contec_pci_dio.c
-         (tags: r0_7_67x), comedi/drivers/daqboard2000.c,
+       * comedi/drivers/8255.c, comedi/drivers/adl_pci9111.c,
+         comedi/drivers/adl_pci9118.c, comedi/drivers/adv_pci1710.c,
+         comedi/drivers/amplc_pc236.c, comedi/drivers/amplc_pc263.c,
+         comedi/drivers/amplc_pci230.c, comedi/drivers/cb_das16_cs.c,
+         comedi/drivers/cb_pcidas.c, comedi/drivers/cb_pcidas64.c,
+         comedi/drivers/cb_pcidda.c, comedi/drivers/cb_pcimdas.c,
+         comedi/drivers/cb_pcimdda.c, comedi/drivers/comedi_parport.c,
+         comedi/drivers/comedi_rt_timer.c, comedi/drivers/comedi_test.c,
+         comedi/drivers/contec_pci_dio.c, comedi/drivers/daqboard2000.c,
          comedi/drivers/das08.c, comedi/drivers/das16.c,
-         comedi/drivers/das16m1.c (tags: r0_7_67x),
-         comedi/drivers/das1800.c (tags: r0_7_67x),
-         comedi/drivers/das6402.c (tags: r0_7_67x),
-         comedi/drivers/das800.c, comedi/drivers/dt2801.c,
-         comedi/drivers/dt2811.c, comedi/drivers/dt2814.c,
-         comedi/drivers/dt2815.c, comedi/drivers/dt2817.c (tags:
-         branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x),
-         comedi/drivers/dt282x.c, comedi/drivers/dt3000.c,
-         comedi/drivers/fl512.c, comedi/drivers/icp_multi.c,
-         comedi/drivers/ii_pci20kc.c (tags: r0_7_67x),
-         comedi/drivers/ke_counter.c (tags: r0_7_69, r0_7_67x),
-         comedi/drivers/me_daq.c (tags: r0_7_67x),
-         comedi/drivers/mpc8260cpm.c (tags: r0_7_69, r0_7_67x),
-         comedi/drivers/multiq3.c (tags: r0_7_67x),
+         comedi/drivers/das16m1.c, comedi/drivers/das1800.c,
+         comedi/drivers/das6402.c, comedi/drivers/das800.c,
+         comedi/drivers/dt2801.c, comedi/drivers/dt2811.c,
+         comedi/drivers/dt2814.c, comedi/drivers/dt2815.c,
+         comedi/drivers/dt2817.c, comedi/drivers/dt282x.c,
+         comedi/drivers/dt3000.c, comedi/drivers/fl512.c,
+         comedi/drivers/icp_multi.c, comedi/drivers/ii_pci20kc.c,
+         comedi/drivers/ke_counter.c, comedi/drivers/me_daq.c,
+         comedi/drivers/mpc8260cpm.c, comedi/drivers/multiq3.c,
          comedi/drivers/ni_6527.c, comedi/drivers/ni_670x.c,
-         comedi/drivers/ni_at_a2150.c, comedi/drivers/ni_at_ao.c (tags:
-         r0_7_69, r0_7_67x), comedi/drivers/ni_atmio16d.c,
-         comedi/drivers/ni_daq_dio24.c (tags: r0_7_67x),
+         comedi/drivers/ni_at_a2150.c, comedi/drivers/ni_at_ao.c,
+         comedi/drivers/ni_atmio16d.c, comedi/drivers/ni_daq_dio24.c,
          comedi/drivers/ni_labpc.c, comedi/drivers/ni_mio_common.c,
-         comedi/drivers/ni_pcidio.c (tags: r0_7_67x),
-         comedi/drivers/pcl711.c, comedi/drivers/pcl724.c,
-         comedi/drivers/pcl725.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69, r0_7_67x), comedi/drivers/pcl726.c (tags:
-         branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x),
-         comedi/drivers/pcl812.c, comedi/drivers/pcl816.c,
-         comedi/drivers/pcl818.c, comedi/drivers/pcm3730.c (tags:
-         r0_7_67x), comedi/drivers/pcmad.c (tags: branch-0_7-start,
-         r0_7_70, r0_7_69, r0_7_67x), comedi/drivers/poc.c (tags: r0_7_69,
-         r0_7_67x), comedi/drivers/quatech_daqp_cs.c (tags: r0_7_67x),
+         comedi/drivers/ni_pcidio.c, comedi/drivers/pcl711.c,
+         comedi/drivers/pcl724.c, comedi/drivers/pcl725.c,
+         comedi/drivers/pcl726.c, comedi/drivers/pcl812.c,
+         comedi/drivers/pcl816.c, comedi/drivers/pcl818.c,
+         comedi/drivers/pcm3730.c, comedi/drivers/pcmad.c,
+         comedi/drivers/poc.c, comedi/drivers/quatech_daqp_cs.c,
          comedi/drivers/rtd520.c, comedi/drivers/rti800.c,
-         comedi/drivers/rti802.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69, r0_7_67x), comedi/drivers/serial2002.c,
-         comedi/drivers/skel.c (tags: r0_7_69, r0_7_67x),
-         comedi/drivers/ssv_dnp.c (tags: r0_7_69, r0_7_67x),
+         comedi/drivers/rti802.c, comedi/drivers/serial2002.c,
+         comedi/drivers/skel.c, comedi/drivers/ssv_dnp.c,
          include/linux/comedidev.h: Changed prototype of
          alloc_subdevices() so it doesn't require dev->n_subdevices to be
          set prior to being called.  Fixed 8255 cleanup in ni_daq_dio24.c.
 
 2003-02-05 10:06  fmhess
 
-       * scripts/release (tags: r0_7_69, r0_7_67x): updated reference to
-         old lineo cvs server
+       * scripts/release: updated reference to old lineo cvs server
 
 2003-02-03 13:16  ds
 
-       * comedi/kcomedilib/dio.c (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69,
-         r0_7_67x): Fix warning
+       * comedi/kcomedilib/dio.c: Fix warning
 
 2003-02-03 13:16  ds
 
 
 2003-02-03 01:09  fmhess
 
-       * INSTALL (tags: r0_7_67x): make install directions more redhat 8
-         friendly, apparently 'make oldconfig' pulls in a config file
-         based on Makefile's EXTRAVERSION
+       * INSTALL: make install directions more redhat 8 friendly,
+         apparently 'make oldconfig' pulls in a config file based on
+         Makefile's EXTRAVERSION
 
 2003-01-30 22:55  ds
 
 
 2003-01-30 22:54  ds
 
-       * include/linux/comedi.h (tags: r0_7_67x): Add some configuration
-         instructions
+       * include/linux/comedi.h: Add some configuration instructions
 
 2003-01-30 22:54  ds
 
 
 2002-12-02 15:03  ds
 
-       * comedi/: rt.c, rt_pend_tq.c (tags: branch-0_7-start, r0_7_70,
-         r0_7_69) (utags: r0_7_67x): Fix compilation for rt due to changes
-         in comedidev.h.  Fixes #8
+       * comedi/: rt.c, rt_pend_tq.c: Fix compilation for rt due to
+         changes in comedidev.h.  Fixes #8
 
 2002-12-01 15:25  fmhess
 
 
 2002-11-26 17:48  ds
 
-       * Makefile (tags: r0_7_67x): bump version
+       * Makefile: bump version
 
 2002-11-26 15:01  fmhess
 
 
        * comedi/drivers/ni_mio_common.c: fix ai munging bugs
 
+2002-11-22 02:12  tag r0_7_66
+
 2002-11-22 02:12  ds
 
-       * comedi/comedi_fops.c (tags: r0_7_66): Revert bufinfo structure
-         name changes.  Fixed long-standing bug involving the return value
-         of the insn ioctl.
+       * comedi/comedi_fops.c: Revert bufinfo structure name changes.
+         Fixed long-standing bug involving the return value of the insn
+         ioctl.
 
 2002-11-22 01:57  ds
 
-       * include/linux/comedi.h (tags: r0_7_66): Revert accidental change
-         of structure names
+       * include/linux/comedi.h: Revert accidental change of structure
+         names
 
 2002-11-22 01:55  ds
 
-       * comedi/comedi_fops.c, comedi/drivers.c (tags: r0_7_66),
-         comedi/drivers/mite.c (tags: r0_7_67x, r0_7_66),
-         comedi/drivers/mite.h (tags: r0_7_67x, r0_7_66),
-         comedi/drivers/ni_pcidio.c (tags: r0_7_66),
-         comedi/drivers/ni_pcimio.c (tags: r0_7_66),
-         include/linux/comedidev.h (tags: r0_7_66): Change buf_alloc to
-         buf_change, and fix allocation and mapping of buffers.  Added
-         buf_page_list with list of pointers to buffer pages.
+       * comedi/comedi_fops.c, comedi/drivers.c, comedi/drivers/mite.c,
+         comedi/drivers/mite.h, comedi/drivers/ni_pcidio.c,
+         comedi/drivers/ni_pcimio.c, include/linux/comedidev.h: Change
+         buf_alloc to buf_change, and fix allocation and mapping of
+         buffers.  Added buf_page_list with list of pointers to buffer
+         pages.
 
 2002-11-22 01:53  ds
 
-       * include/linux/version.h (tags: r0_7_67x, r0_7_66): Add a
-         UTS_RELEASE override
+       * include/linux/version.h: Add a UTS_RELEASE override
 
 2002-11-21 14:16  fmhess
 
 
 2002-11-21 13:27  fmhess
 
-       * comedi/drivers/ni_labpc.c (tags: r0_7_66): force io data path
-         width to 8 bits for daqcard
+       * comedi/drivers/ni_labpc.c: force io data path width to 8 bits for
+         daqcard
 
 2002-11-21 12:58  fmhess
 
 
 2002-11-21 03:39  ds
 
-       * comedi/drivers/comedi_rt_timer.c (tags: r0_7_66): Compilation
-         fixes
+       * comedi/drivers/comedi_rt_timer.c: Compilation fixes
 
 2002-11-21 03:27  ds
 
 
 2002-11-21 03:21  ds
 
-       * include/linux/: comedidev.h, init.h (tags: r0_7_67x, r0_7_66),
-         vmalloc.h (tags: r0_7_67x, r0_7_66): Fixes for 2.0.39
+       * include/linux/: comedidev.h, init.h, vmalloc.h: Fixes for 2.0.39
 
 2002-11-21 03:21  ds
 
-       * scripts/config.dist-2.0.39 (tags: r0_7_69, r0_7_67x, r0_7_66):
-         config.dist file with everything disabled that doesn't work on
-         2.0.39
+       * scripts/config.dist-2.0.39: config.dist file with everything
+         disabled that doesn't work on 2.0.39
 
 2002-11-21 03:00  ds
 
-       * comedi/drivers/cb_pcimdas.c (tags: r0_7_66): compile fixes and
-         warning fixes
+       * comedi/drivers/cb_pcimdas.c: compile fixes and warning fixes
 
 2002-11-21 02:56  ds
 
-       * comedi/drivers/: amplc_pci230.c (tags: r0_7_66), cb_das16_cs.c
-         (tags: r0_7_66), cb_pcimdas.c, comedi_rt_timer.c, daqboard2000.c
-         (tags: r0_7_66), das6402.c (tags: r0_7_66), dt2801.c (tags:
-         r0_7_66), dt2811.c (tags: r0_7_66), dt2814.c (tags: r0_7_66),
-         dt3000.c (tags: r0_7_66), fl512.c (tags: r0_7_66), multiq3.c
-         (tags: r0_7_66), ni_atmio16d.c (tags: r0_7_66), pcl711.c (tags:
-         r0_7_66), pcmad.c (tags: r0_7_66), quatech_daqp_cs.c (tags:
-         r0_7_66), rtd520.c (tags: r0_7_66), rti800.c (tags: r0_7_66),
-         serial2002.c (tags: r0_7_66), skel.c (tags: r0_7_66): Fix
-         subdevice flags not having AREF capability
+       * comedi/drivers/: amplc_pci230.c, cb_das16_cs.c, cb_pcimdas.c,
+         comedi_rt_timer.c, daqboard2000.c, das6402.c, dt2801.c, dt2811.c,
+         dt2814.c, dt3000.c, fl512.c, multiq3.c, ni_atmio16d.c, pcl711.c,
+         pcmad.c, quatech_daqp_cs.c, rtd520.c, rti800.c, serial2002.c,
+         skel.c: Fix subdevice flags not having AREF capability
 
 2002-11-21 02:55  ds
 
-       * comedi/drivers/Makefile.in (tags: r0_7_66): added cb_pcimdas
+       * comedi/drivers/Makefile.in: added cb_pcimdas
 
 2002-11-21 02:54  ds
 
-       * scripts/config.dist (tags: r0_7_66): new dffault
+       * scripts/config.dist: new dffault
 
 2002-11-21 02:53  ds
 
-       * comedi/Config.in (tags: r0_7_66): add cb_pcimdas
+       * comedi/Config.in: add cb_pcimdas
 
 2002-11-21 02:34  ds
 
-       * comedi/comedi_ksyms.c (tags: r0_7_67x, r0_7_66), comedi/proc.c
-         (tags: branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69,
-         r0_7_67x, r0_7_66), comedi/drivers/8255.c (tags: r0_7_66),
-         comedi/drivers/adl_pci9111.c (tags: r0_7_66),
-         comedi/drivers/adl_pci9118.c (tags: r0_7_66),
-         comedi/drivers/adv_pci1710.c (tags: r0_7_66),
-         comedi/drivers/amcc_s5933.c (tags: r0_7_66),
-         comedi/drivers/amcc_s5933.h (tags: r0_7_66),
-         comedi/drivers/amplc_pc236.c (tags: r0_7_66),
-         comedi/drivers/amplc_pc263.c (tags: r0_7_66),
-         comedi/drivers/amplc_pci230.c, comedi/drivers/cb_das16_cs.c,
-         comedi/drivers/cb_pcidas.c (tags: r0_7_66),
-         comedi/drivers/cb_pcidas64.c (tags: r0_7_66),
-         comedi/drivers/cb_pcidda.c (tags: r0_7_66),
-         comedi/drivers/cb_pcimdas.c, comedi/drivers/cb_pcimdda.c (tags:
-         r0_7_66), comedi/drivers/comedi_fc.c (tags: r0_7_66),
-         comedi/drivers/comedi_fc.h (tags: r0_7_67x, r0_7_66),
-         comedi/drivers/comedi_parport.c (tags: r0_7_66),
-         comedi/drivers/comedi_rt_timer.c, comedi/drivers/comedi_test.c
-         (tags: r0_7_66), comedi/drivers/contec_pci_dio.c (tags: r0_7_66),
-         comedi/drivers/daqboard2000.c, comedi/drivers/das08.c (tags:
-         r0_7_66), comedi/drivers/das16.c (tags: r0_7_66),
-         comedi/drivers/das16m1.c (tags: r0_7_66),
-         comedi/drivers/das1800.c (tags: r0_7_66),
-         comedi/drivers/das6402.c, comedi/drivers/das800.c (tags:
-         r0_7_66), comedi/drivers/dt2801.c, comedi/drivers/dt2811.c,
-         comedi/drivers/dt2814.c, comedi/drivers/dt2815.c (tags: r0_7_66),
-         comedi/drivers/dt2817.c (tags: r0_7_66), comedi/drivers/dt282x.c
-         (tags: r0_7_66), comedi/drivers/dt3000.c, comedi/drivers/fl512.c,
-         comedi/drivers/icp_multi.c (tags: r0_7_66),
-         comedi/drivers/icp_multi.h (tags: r0_7_69, r0_7_67x, r0_7_66),
-         comedi/drivers/ii_pci20kc.c (tags: r0_7_66),
-         comedi/drivers/ke_counter.c (tags: r0_7_66),
-         comedi/drivers/me_daq.c (tags: r0_7_66), comedi/drivers/mite.c,
-         comedi/drivers/mpc8260cpm.c (tags: r0_7_66),
-         comedi/drivers/multiq3.c, comedi/drivers/ni_670x.c (tags:
-         r0_7_66), comedi/drivers/ni_at_a2150.c (tags: r0_7_66),
-         comedi/drivers/ni_at_ao.c (tags: r0_7_66),
-         comedi/drivers/ni_atmio.c (tags: r0_7_66),
-         comedi/drivers/ni_atmio16d.c, comedi/drivers/ni_daq_dio24.c
-         (tags: r0_7_66), comedi/drivers/ni_labpc.c,
-         comedi/drivers/ni_mio_common.c (tags: r0_7_66),
-         comedi/drivers/ni_mio_cs.c (tags: r0_7_66),
-         comedi/drivers/ni_pcidio.c, comedi/drivers/ni_pcimio.c,
-         comedi/drivers/pcl711.c, comedi/drivers/pcl724.c (tags: r0_7_66),
-         comedi/drivers/pcl725.c (tags: r0_7_66), comedi/drivers/pcl726.c
-         (tags: r0_7_66), comedi/drivers/pcl812.c (tags: r0_7_66),
-         comedi/drivers/pcl816.c (tags: r0_7_66), comedi/drivers/pcl818.c
-         (tags: r0_7_66), comedi/drivers/pcm3730.c (tags: r0_7_66),
-         comedi/drivers/pcmad.c, comedi/drivers/poc.c (tags: r0_7_66),
-         comedi/drivers/quatech_daqp_cs.c, comedi/drivers/rtd520.c,
-         comedi/drivers/rti800.c, comedi/drivers/rti802.c (tags: r0_7_66),
-         comedi/drivers/serial2002.c, comedi/drivers/skel.c,
-         comedi/drivers/ssv_dnp.c (tags: r0_7_66), comedi/kcomedilib/get.c
-         (tags: r0_7_66), include/linux/comedidev.h, scripts/check_driver
-         (tags: r0_7_66): Huge monster patch that removes unnessary
+       * comedi/comedi_ksyms.c, comedi/proc.c, comedi/drivers/8255.c,
+         comedi/drivers/adl_pci9111.c, comedi/drivers/adl_pci9118.c,
+         comedi/drivers/adv_pci1710.c, comedi/drivers/amcc_s5933.c,
+         comedi/drivers/amcc_s5933.h, comedi/drivers/amplc_pc236.c,
+         comedi/drivers/amplc_pc263.c, comedi/drivers/amplc_pci230.c,
+         comedi/drivers/cb_das16_cs.c, comedi/drivers/cb_pcidas.c,
+         comedi/drivers/cb_pcidas64.c, comedi/drivers/cb_pcidda.c,
+         comedi/drivers/cb_pcimdas.c, comedi/drivers/cb_pcimdda.c,
+         comedi/drivers/comedi_fc.c, comedi/drivers/comedi_fc.h,
+         comedi/drivers/comedi_parport.c,
+         comedi/drivers/comedi_rt_timer.c, comedi/drivers/comedi_test.c,
+         comedi/drivers/contec_pci_dio.c, comedi/drivers/daqboard2000.c,
+         comedi/drivers/das08.c, comedi/drivers/das16.c,
+         comedi/drivers/das16m1.c, comedi/drivers/das1800.c,
+         comedi/drivers/das6402.c, comedi/drivers/das800.c,
+         comedi/drivers/dt2801.c, comedi/drivers/dt2811.c,
+         comedi/drivers/dt2814.c, comedi/drivers/dt2815.c,
+         comedi/drivers/dt2817.c, comedi/drivers/dt282x.c,
+         comedi/drivers/dt3000.c, comedi/drivers/fl512.c,
+         comedi/drivers/icp_multi.c, comedi/drivers/icp_multi.h,
+         comedi/drivers/ii_pci20kc.c, comedi/drivers/ke_counter.c,
+         comedi/drivers/me_daq.c, comedi/drivers/mite.c,
+         comedi/drivers/mpc8260cpm.c, comedi/drivers/multiq3.c,
+         comedi/drivers/ni_670x.c, comedi/drivers/ni_at_a2150.c,
+         comedi/drivers/ni_at_ao.c, comedi/drivers/ni_atmio.c,
+         comedi/drivers/ni_atmio16d.c, comedi/drivers/ni_daq_dio24.c,
+         comedi/drivers/ni_labpc.c, comedi/drivers/ni_mio_common.c,
+         comedi/drivers/ni_mio_cs.c, comedi/drivers/ni_pcidio.c,
+         comedi/drivers/ni_pcimio.c, comedi/drivers/pcl711.c,
+         comedi/drivers/pcl724.c, comedi/drivers/pcl725.c,
+         comedi/drivers/pcl726.c, comedi/drivers/pcl812.c,
+         comedi/drivers/pcl816.c, comedi/drivers/pcl818.c,
+         comedi/drivers/pcm3730.c, comedi/drivers/pcmad.c,
+         comedi/drivers/poc.c, comedi/drivers/quatech_daqp_cs.c,
+         comedi/drivers/rtd520.c, comedi/drivers/rti800.c,
+         comedi/drivers/rti802.c, comedi/drivers/serial2002.c,
+         comedi/drivers/skel.c, comedi/drivers/ssv_dnp.c,
+         comedi/kcomedilib/get.c, include/linux/comedidev.h,
+         scripts/check_driver: Huge monster patch that removes unnessary
          headers
 
 2002-11-20 23:44  ds
 
 2002-11-20 23:43  ds
 
-       * comedi/: Makefile.in (tags: r0_7_67x, r0_7_66), comedi_fops.c,
-         drivers.c: Reimplement kvmem.[ch] code in comedi_fops
+       * comedi/: Makefile.in, comedi_fops.c, drivers.c: Reimplement
+         kvmem.[ch] code in comedi_fops
 
 2002-11-20 23:34  ds
 
-       * include/linux/highmem.h (tags: branch-0_7-end, branch-0_7-start,
-         r0_7_70, r0_7_69, r0_7_67x, r0_7_66): new compat header
+       * include/linux/highmem.h: new compat header
 
 2002-11-20 23:33  ds
 
 
 2002-11-20 23:29  ds
 
-       * include/linux/pci.h (tags: r0_7_66): fix compat for
-         pci_enable_device
+       * include/linux/pci.h: fix compat for pci_enable_device
 
 2002-11-20 23:28  ds
 
-       * include/linux/module.h (tags: r0_7_67x, r0_7_66): fix some
-         warnigns
+       * include/linux/module.h: fix some warnigns
 
 2002-11-20 23:27  ds
 
-       * include/linux/mm.h (tags: r0_7_66): add page_address()
+       * include/linux/mm.h: add page_address()
 
 2002-11-20 23:26  ds
 
 
 2002-11-20 23:26  ds
 
-       * include/asm/page.h (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x,
-         r0_7_66): add virt_to_page
+       * include/asm/page.h: add virt_to_page
 
 2002-11-20 23:18  ds
 
 2002-11-19 18:49  fmhess
 
        * comedi/comedi_fops.c, comedi/comedi_ksyms.c, comedi/drivers.c,
-         comedi/rt.c (tags: r0_7_66), comedi/drivers/comedi_fc.c,
+         comedi/rt.c, comedi/drivers/comedi_fc.c,
          comedi/drivers/ni_mio_common.c, comedi/drivers/ni_pcimio.c,
-         comedi/kcomedilib/kcomedilib_main.c (tags: r0_7_66),
-         include/linux/comedi.h, include/linux/comedi_rt.h (tags:
-         r0_7_66), include/linux/comedidev.h: Added capability to bufinfo
-         ioctl for marking bytes written and renamed its members.  Changed
-         prototype of RT version of comedi_request_irq to make dev_id a
-         comedi_device* instead of a void* since it is assumed to be so
-         elsewhere in rt code.  Made comedi_switch_to_rt return an int so
-         it is able to return error on failure.  Fixes for
-         overrun/underrun checking with dma in ni_mio_common.
+         comedi/kcomedilib/kcomedilib_main.c, include/linux/comedi.h,
+         include/linux/comedi_rt.h, include/linux/comedidev.h: Added
+         capability to bufinfo ioctl for marking bytes written and renamed
+         its members.  Changed prototype of RT version of
+         comedi_request_irq to make dev_id a comedi_device* instead of a
+         void* since it is assumed to be so elsewhere in rt code.  Made
+         comedi_switch_to_rt return an int so it is able to return error
+         on failure.  Fixes for overrun/underrun checking with dma in
+         ni_mio_common.
 
 2002-11-19 15:59  ds
 
 
 2002-11-18 18:45  fmhess
 
-       * comedi/range.c (tags: r0_7_73, r0_7_72, r0_7_71, branch-0_7-end,
-         branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x, r0_7_66): disabled
-         checking for supported aref
+       * comedi/range.c: disabled checking for supported aref
 
 2002-11-18 18:32  ds
 
 
 2002-11-18 12:03  fmhess
 
-       * Contributors (tags: r0_7_66), comedi/range.c,
-         comedi/drivers/ni_mio_common.c, comedi/drivers/ni_stc.h (tags:
-         r0_7_66): added checking for valid aref.  611x calibration
-         support.
+       * Contributors, comedi/range.c, comedi/drivers/ni_mio_common.c,
+         comedi/drivers/ni_stc.h: added checking for valid aref.  611x
+         calibration support.
 
 2002-11-15 12:33  fmhess
 
 
 2002-11-07 14:41  ds
 
-       * README (tags: r0_7_67x, r0_7_66): Instructions for anonymous CVS
+       * README: Instructions for anonymous CVS
 
 2002-11-06 14:20  ds
 
 
 2002-11-06 14:18  ds
 
-       * comedi/drivers/plx9052.h (tags: r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x,
-         r0_7_66): Pull definitions for PLX-9052 from amplc_pc236.c
+       * comedi/drivers/plx9052.h: Pull definitions for PLX-9052 from
+         amplc_pc236.c
 
 2002-11-05 01:55  ds
 
 
 2002-11-03 11:33  fmhess
 
-       * include/asm/div64.h (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x,
-         r0_7_66): fix possibility of endless loop when divisor >
-         0x80000000
+       * include/asm/div64.h: fix possibility of endless loop when divisor
+         > 0x80000000
 
 2002-10-28 19:43  ds
 
-       * comedi/drivers/: 8255.c, 8255.h (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69,
-         r0_7_67x, r0_7_66): Add preliminary command support
+       * comedi/drivers/: 8255.c, 8255.h: Add preliminary command support
 
 2002-10-26 23:30  fmhess
 
-       * comedi/kcomedilib/kcomedilib_main.c, include/linux/comedilib.h
-         (tags: r0_7_66): changed prototype of comedi_map() to prevent
-         bogus compiler warnings
+       * comedi/kcomedilib/kcomedilib_main.c, include/linux/comedilib.h:
+         changed prototype of comedi_map() to prevent bogus compiler
+         warnings
 
 2002-10-26 23:25  fmhess
 
 
 2002-10-08 18:35  fmhess
 
-       * Documentation/comedi/insn_config (tags: branch-0_7-end,
-         branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x, r0_7_66): added
-         brief description for INSN_CONFIG_TIMER_1
+       * Documentation/comedi/insn_config: added brief description for
+         INSN_CONFIG_TIMER_1
 
 2002-10-08 18:34  fmhess
 
 
 2002-09-24 22:14  ds
 
-       * comedi/drivers/: Makefile.in, ke_counter.c, me2600_fw.h (tags:
-         r0_7_66), me_daq.c: Add new drivers from Michael Hillmann
+       * comedi/drivers/: Makefile.in, ke_counter.c, me2600_fw.h,
+         me_daq.c: Add new drivers from Michael Hillmann
 
 2002-09-24 21:56  ds
 
 
 2002-09-24 21:35  ds
 
-       * TODO (tags: r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70,
-         r0_7_69, r0_7_67x, r0_7_66): Where the hell was Biggles when we
-         needed him last Saturday?
+       * TODO: Where the hell was Biggles when we needed him last
+         Saturday?
 
 2002-09-24 21:34  ds
 
-       * scripts/Configure (tags: r0_7_69, r0_7_67x, r0_7_66): change from
-         bin/sh to bin/bash
+       * scripts/Configure: change from bin/sh to bin/bash
 
 2002-09-24 21:33  ds
 
 
 2002-08-30 19:05  ds
 
-       * debian/rules (tags: branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x,
-         r0_7_66): more linux version fixes
+       * debian/rules: more linux version fixes
 
 2002-08-30 18:50  ds
 
 
 2002-08-28 20:01  ds
 
-       * comedi/drivers/: rtd520.c, rtd520.h (tags: r0_7_74, r0_7_73,
-         r0_7_72, r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70,
-         r0_7_69, r0_7_67x, r0_7_66): patch from Dan Christian.   - DMA
-         support (experimental)   - Fix timing limits to properly handle
-         single channel and multi channel cases   - Stop using the About
-         counter, it really wasn't needed and caused problems   - The
-         usual clean ups and doc improvements
+       * comedi/drivers/: rtd520.c, rtd520.h: patch from Dan Christian.
+         - DMA support (experimental)   - Fix timing limits to properly
+         handle single channel and multi channel cases   - Stop using the
+         About counter, it really wasn't needed and caused problems   -
+         The usual clean ups and doc improvements
 
 2002-08-28 19:56  ds
 
 
 2002-06-07 17:07  ds
 
-       * scripts/release (tags: r0_7_66): remove -v option to tar
+       * scripts/release: remove -v option to tar
+
+2002-06-07 17:01  tag r0_7_65
 
 2002-06-07 17:01  ds
 
-       * Makefile (tags: r0_7_66, r0_7_65): version bump
+       * Makefile: version bump
 
 2002-06-07 17:01  ds
 
-       * Changelog (tags: r0_7_69, r0_7_67x, r0_7_66, r0_7_65): 0.7.65
+       * Changelog: 0.7.65
 
 2002-06-07 16:22  ds
 
        * comedi/drivers/: amplc_pci230.c, contec_pci_dio.c, fl512.c,
-         ni_at_ao.c, pcm3730.c, rtd520.c, serial2002.c, ssv_dnp.c (utags:
-         r0_7_65): Cleanups suggested by check_driver.
+         ni_at_ao.c, pcm3730.c, rtd520.c, serial2002.c, ssv_dnp.c:
+         Cleanups suggested by check_driver.
 
 2002-06-07 16:15  ds
 
-       * scripts/check_driver (tags: r0_7_65): Changed recently added test
-         to warning
+       * scripts/check_driver: Changed recently added test to warning
 
 2002-06-07 16:14  ds
 
 
 2002-06-07 16:14  ds
 
-       * comedi/drivers/icp_multi.c (tags: r0_7_65): Added Description tag
+       * comedi/drivers/icp_multi.c: Added Description tag
 
 2002-06-07 16:14  ds
 
 
 2002-06-07 16:13  ds
 
-       * comedi/drivers/8255.c (tags: r0_7_65): Added documentation
+       * comedi/drivers/8255.c: Added documentation
 
 2002-06-07 16:12  ds
 
-       * TODO (tags: r0_7_65): [no log message]
+       * TODO: [no log message]
 
 2002-06-07 15:55  ds
 
-       * comedi/drivers/ni_atmio.c (tags: r0_7_65): Revert 16xe-50 caldacs
-         to manual.  Change *-xe-10 to manual.
+       * comedi/drivers/ni_atmio.c: Revert 16xe-50 caldacs to manual.
+         Change *-xe-10 to manual.
 
 2002-06-07 15:53  ds
 
-       * comedi/drivers/: contec_pci_dio.c, mite.c (tags: r0_7_65): clean
-         up warnings
+       * comedi/drivers/: contec_pci_dio.c, mite.c: clean up warnings
 
 2002-06-06 20:03  ds
 
-       * comedi/drivers/ni_pcimio.c (tags: r0_7_65): Change some caldacs
-         to debug
+       * comedi/drivers/ni_pcimio.c: Change some caldacs to debug
 
 2002-06-06 20:02  ds
 
-       * comedi/drivers/ni_mio_common.c (tags: r0_7_65): Ignore more MITE
-         errors, and don't call disable_irq() when something goes wrong.
-         It's not nice to our neighbors.
+       * comedi/drivers/ni_mio_common.c: Ignore more MITE errors, and
+         don't call disable_irq() when something goes wrong.  It's not
+         nice to our neighbors.
 
 2002-06-06 20:01  ds
 
 
 2002-06-06 20:01  ds
 
-       * comedi/drivers/dt282x.c (tags: r0_7_65): Only advertise TRIG_NONE
-         as a stop source, since that's what we support.
+       * comedi/drivers/dt282x.c: Only advertise TRIG_NONE as a stop
+         source, since that's what we support.
 
 2002-06-06 20:00  ds
 
-       * comedi/drivers/comedi_parport.c (tags: r0_7_65): Fix: make sure
-         to flag a EOS event in interrupts
+       * comedi/drivers/comedi_parport.c: Fix: make sure to flag a EOS
+         event in interrupts
 
 2002-06-06 19:56  ds
 
 
 2002-06-02 20:04  fmhess
 
-       * comedi/drivers/cb_pcidas64.c (tags: r0_7_65): fixed analog output
-         insn for 4020
+       * comedi/drivers/cb_pcidas64.c: fixed analog output insn for 4020
 
 2002-06-01 21:27  fmhess
 
 
 2002-06-01 20:48  fmhess
 
-       * include/linux/comedilib.h (tags: r0_7_65): COMEDI_CB_* flags are
-         already defined in linux/comedi.h
+       * include/linux/comedilib.h: COMEDI_CB_* flags are already defined
+         in linux/comedi.h
 
 2002-06-01 19:03  fmhess
 
 
 2002-05-29 16:11  ds
 
-       * comedi/comedi_fops.c (tags: r0_7_65): Make default mode for
-         /dev/comediN 666 in devfs.
+       * comedi/comedi_fops.c: Make default mode for /dev/comediN 666 in
+         devfs.
 
 2002-05-29 00:28  ds
 
-       * comedi/drivers/: ni_mio_common.c, ni_stc.h (tags: r0_7_65): Fixed
-         AI_START trigger for PFI inputs
+       * comedi/drivers/: ni_mio_common.c, ni_stc.h: Fixed AI_START
+         trigger for PFI inputs
 
 2002-05-28 20:17  fmhess
 
-       * comedi/drivers/cb_pcidas64.c, include/linux/comedi.h (tags:
-         r0_7_65): made cb_pcidas64 external trigger configuration
-         consistent
+       * comedi/drivers/cb_pcidas64.c, include/linux/comedi.h: made
+         cb_pcidas64 external trigger configuration consistent
 
 2002-05-20 14:38  ds
 
 
 2002-05-16 21:51  fmhess
 
-       * INSTALL (tags: r0_7_66), include/linux/comedidev.h (utags:
-         r0_7_65): twiddling some documentation
+       * INSTALL, include/linux/comedidev.h: twiddling some documentation
 
 2002-05-16 21:44  fmhess
 
-       * comedi/drivers/comedi_rt_timer.c (tags: r0_7_65): fixed rtai
-         operation by adding start_rt_timer() and stop_rt_timer()
+       * comedi/drivers/comedi_rt_timer.c: fixed rtai operation by adding
+         start_rt_timer() and stop_rt_timer()
 
 2002-05-16 20:00  fmhess
 
 
 2002-05-16 18:13  ds
 
-       * comedi/: drivers.c (tags: r0_7_65), drivers/8255.c,
-         drivers/adl_pci9111.c (tags: r0_7_65), drivers/adl_pci9118.c
-         (tags: r0_7_65), drivers/adv_pci1710.c (tags: r0_7_65),
-         drivers/amplc_pci230.c, drivers/cb_pcidas.c (tags: r0_7_65),
-         drivers/cb_pcidas64.c, drivers/cb_pcidda.c (tags: r0_7_65),
+       * comedi/: drivers.c, drivers/8255.c, drivers/adl_pci9111.c,
+         drivers/adl_pci9118.c, drivers/adv_pci1710.c,
+         drivers/amplc_pci230.c, drivers/cb_pcidas.c,
+         drivers/cb_pcidas64.c, drivers/cb_pcidda.c,
          drivers/comedi_parport.c, drivers/contec_pci_dio.c,
-         drivers/daqboard2000.c (tags: r0_7_65), drivers/das08.c (tags:
-         r0_7_65), drivers/das16.c (tags: r0_7_65), drivers/das16m1.c
-         (tags: r0_7_65), drivers/das1800.c (tags: r0_7_65),
-         drivers/das800.c (tags: r0_7_65), drivers/dt2801.c (tags:
-         r0_7_65), drivers/dt2811.c (tags: r0_7_65), drivers/dt2815.c
-         (tags: r0_7_65), drivers/dt2817.c (tags: r0_7_65),
-         drivers/dt282x.c, drivers/dt3000.c (tags: r0_7_65),
-         drivers/fl512.c, drivers/icp_multi.c, drivers/ii_pci20kc.c (tags:
-         r0_7_65), drivers/mpc8260cpm.c (tags: r0_7_65), drivers/multiq3.c
-         (tags: r0_7_65), drivers/ni_670x.c (tags: r0_7_65),
-         drivers/ni_at_ao.c, drivers/ni_atmio16d.c (tags: r0_7_65),
-         drivers/ni_labpc.c (tags: r0_7_65), drivers/ni_pcidio.c (tags:
-         r0_7_65), drivers/pcl711.c (tags: r0_7_65), drivers/pcl725.c
-         (tags: r0_7_65), drivers/pcl726.c (tags: r0_7_65),
-         drivers/pcl812.c (tags: r0_7_65), drivers/pcl816.c (tags:
-         r0_7_65), drivers/pcl818.c (tags: r0_7_65), drivers/pcm3730.c,
-         drivers/poc.c (tags: r0_7_65), drivers/rtd520.c, drivers/rti800.c
-         (tags: r0_7_65), drivers/rti802.c (tags: r0_7_65), drivers/skel.c
-         (tags: r0_7_65), drivers/ssv_dnp.c: Globally fix spelling of
+         drivers/daqboard2000.c, drivers/das08.c, drivers/das16.c,
+         drivers/das16m1.c, drivers/das1800.c, drivers/das800.c,
+         drivers/dt2801.c, drivers/dt2811.c, drivers/dt2815.c,
+         drivers/dt2817.c, drivers/dt282x.c, drivers/dt3000.c,
+         drivers/fl512.c, drivers/icp_multi.c, drivers/ii_pci20kc.c,
+         drivers/mpc8260cpm.c, drivers/multiq3.c, drivers/ni_670x.c,
+         drivers/ni_at_ao.c, drivers/ni_atmio16d.c, drivers/ni_labpc.c,
+         drivers/ni_pcidio.c, drivers/pcl711.c, drivers/pcl725.c,
+         drivers/pcl726.c, drivers/pcl812.c, drivers/pcl816.c,
+         drivers/pcl818.c, drivers/pcm3730.c, drivers/poc.c,
+         drivers/rtd520.c, drivers/rti800.c, drivers/rti802.c,
+         drivers/skel.c, drivers/ssv_dnp.c: Globally fix spelling of
          SDF_WRITABLE
 
 2002-05-16 18:10  ds
 
-       * comedi/comedi_fops.c, comedi/comedi_ksyms.c (tags: r0_7_65),
-         comedi/kcomedilib/kcomedilib_main.c (tags: r0_7_65),
-         include/linux/comedidev.h: Change pseudo-locking to spin locks.
+       * comedi/comedi_fops.c, comedi/comedi_ksyms.c,
+         comedi/kcomedilib/kcomedilib_main.c, include/linux/comedidev.h:
+         Change pseudo-locking to spin locks.
 
 2002-05-16 17:41  ds
 
-       * comedi/kcomedilib/ksyms.c (tags: r0_7_66, r0_7_65): Remove export
-         of comedi_errno.
+       * comedi/kcomedilib/ksyms.c: Remove export of comedi_errno.
 
 2002-05-16 17:40  ds
 
 
 2002-05-11 20:32  fmhess
 
-       * Makefile.modbuild (tags: r0_7_67x, r0_7_66, r0_7_65): added -e
-         option to depmod, to promote more useful error reports on 'make
-         install'
+       * Makefile.modbuild: added -e option to depmod, to promote more
+         useful error reports on 'make install'
 
 2002-05-11 20:26  fmhess
 
-       * scripts/config.dist (tags: r0_7_65): added contec driver
+       * scripts/config.dist: added contec driver
 
 2002-05-11 02:20  ds
 
 
 2002-05-07 19:24  fmhess
 
-       * Documentation/comedi/insn_config (tags: r0_7_65),
-         comedi/drivers/cb_pcidas64.c, include/linux/comedi.h: added
-         config insn for choosing rising or falling edge trigger
+       * Documentation/comedi/insn_config, comedi/drivers/cb_pcidas64.c,
+         include/linux/comedi.h: added config insn for choosing rising or
+         falling edge trigger
 
 2002-05-07 18:58  fmhess
 
 
 2002-05-07 14:16  fmhess
 
-       * scripts/dep.linux (tags: r0_7_66, r0_7_65): got rid of
-         redirection to /dev/null since a lot of people have been hitting
-         errors silently at this point
+       * scripts/dep.linux: got rid of redirection to /dev/null since a
+         lot of people have been hitting errors silently at this point
 
 2002-05-03 13:27  fmhess
 
-       * include/linux/devfs_fs_kernel.h (tags: r0_7_67x, r0_7_66,
-         r0_7_65): fix for broken compatibility headers in 2.2.18 through
-         2.2.20, got rid of devfs_get_handle() which was apparently a typo
+       * include/linux/devfs_fs_kernel.h: fix for broken compatibility
+         headers in 2.2.18 through 2.2.20, got rid of devfs_get_handle()
+         which was apparently a typo
 
 2002-05-03 12:27  fmhess
 
 
 2002-05-03 12:13  fmhess
 
-       * include/: asm/page.h, linux/pci.h, linux/vmalloc.h (utags:
-         r0_7_65): fixed compilation against 2.2.0 kernel
+       * include/: asm/page.h, linux/pci.h, linux/vmalloc.h: fixed
+         compilation against 2.2.0 kernel
 
 2002-05-02 23:20  fmhess
 
 
 2002-05-02 22:27  fmhess
 
-       * include/asm/types.h (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x,
-         r0_7_66, r0_7_65): added typedef of dma_addr_t for earlier 2.2
+       * include/asm/types.h: added typedef of dma_addr_t for earlier 2.2
          kernels
 
 2002-05-02 19:10  ds
 
-       * include/linux/: devfs_fs_kernel.h, module.h (tags: r0_7_65),
-         pci.h: Improved compatibility for 2.2.14.  May break other 2.2.x
-         kernels.
+       * include/linux/: devfs_fs_kernel.h, module.h, pci.h: Improved
+         compatibility for 2.2.14.  May break other 2.2.x kernels.
 
 2002-05-02 15:01  ds
 
 
 2002-04-26 14:35  ds
 
-       * comedi/Config.in (tags: r0_7_65): Add Contec PCI DIO
+       * comedi/Config.in: Add Contec PCI DIO
 
 2002-04-26 14:34  ds
 
-       * comedi/drivers/Makefile.in (tags: r0_7_65): Add contec_pci_dio.o
+       * comedi/drivers/Makefile.in: Add contec_pci_dio.o
 
 2002-04-26 14:34  ds
 
 
 2002-04-26 14:25  ds
 
-       * comedi/kcomedilib/Makefile.in (tags: r0_7_67x, r0_7_66, r0_7_65):
-         Add get.o to link
+       * comedi/kcomedilib/Makefile.in: Add get.o to link
 
 2002-04-26 14:24  ds
 
-       * comedi/kcomedilib/: data.c (tags: r0_7_66, r0_7_65), dio.c (tags:
-         r0_7_66, r0_7_65), get.c (tags: r0_7_65), kcomedilib_main.c:
+       * comedi/kcomedilib/: data.c, dio.c, get.c, kcomedilib_main.c:
          Globally change int to comedi_t *.  Split out _get functions from
          kcomedilib_main.c.  Use spinlock instead of stupid, buggy
          comedi_lock_semaphore.
 
 2002-04-25 13:27  fmhess
 
-       * comedi/drivers/: ni_at_a2150.c (tags: r0_7_65), ni_labpc.c,
-         pcl711.c, pcl816.c, pcl818.c: stripped out some settle delays in
-         analog input read insn, as per official policy
+       * comedi/drivers/: ni_at_a2150.c, ni_labpc.c, pcl711.c, pcl816.c,
+         pcl818.c: stripped out some settle delays in analog input read
+         insn, as per official policy
 
 2002-04-23 11:08  fmhess
 
 
 2002-04-17 00:02  fmhess
 
-       * comedi/drivers/plx9080.h (tags: r0_7_66, r0_7_65): oops forgot to
-         update header, fixes compile of cb_pcidas64.c
+       * comedi/drivers/plx9080.h: oops forgot to update header, fixes
+         compile of cb_pcidas64.c
 
 2002-04-15 20:27  fmhess
 
 
        * TODO: removed finished item
 
+2002-04-03 02:32  tag r0_7_64
+
 2002-04-03 02:32  ds
 
-       * comedi/drivers/ni_mio_common.c (tags: r0_7_64): Clean up compiler
-         warning.
+       * comedi/drivers/ni_mio_common.c: Clean up compiler warning.
 
 2002-04-03 02:27  ds
 
-       * comedi/Config.in, comedi/drivers/Makefile.in, scripts/config.dist
-         (utags: r0_7_64): Add pcl816 driver
+       * comedi/Config.in, comedi/drivers/Makefile.in,
+         scripts/config.dist: Add pcl816 driver
 
 2002-04-03 02:27  ds
 
-       * TODO (tags: r0_7_64): [no log message]
+       * TODO: [no log message]
 
 2002-04-03 02:26  ds
 
-       * Changelog (tags: r0_7_64): update for 0.7.64
+       * Changelog: update for 0.7.64
 
 2002-04-03 02:25  ds
 
 
 2002-04-03 02:24  ds
 
-       * patches/patch-scxi-0.7.63 (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69,
-         r0_7_67x, r0_7_66, r0_7_65, r0_7_64): Update of patch-scxi
+       * patches/patch-scxi-0.7.63: Update of patch-scxi
 
 2002-04-03 02:22  ds
 
-       * comedi/drivers/pcl816.c (tags: r0_7_64): Clean up check_driver
-         complaints
+       * comedi/drivers/pcl816.c: Clean up check_driver complaints
 
 2002-04-03 02:12  ds
 
 
 2002-04-03 02:10  ds
 
-       * scripts/check_driver (tags: r0_7_64): Add more documentation
-         checking
+       * scripts/check_driver: Add more documentation checking
 
 2002-04-03 00:25  fmhess
 
-       * comedi/drivers/cb_pcidas64.c (tags: r0_7_64): testing alternate
-         fifo offset
+       * comedi/drivers/cb_pcidas64.c: testing alternate fifo offset
 
 2002-04-03 00:07  fmhess
 
 
 2002-03-30 23:18  fmhess
 
-       * comedi/drivers/: das08.c, ni_labpc.c (utags: r0_7_64): enabled
-         pcmcia code for kernels with modular pcmcia support
+       * comedi/drivers/: das08.c, ni_labpc.c: enabled pcmcia code for
+         kernels with modular pcmcia support
 
 2002-03-30 15:30  fmhess
 
-       * Documentation/comedi/insn_config (tags: r0_7_64): added note on
-         new config insn
+       * Documentation/comedi/insn_config: added note on new config insn
 
 2002-03-30 15:29  fmhess
 
-       * include/linux/comedi.h (tags: r0_7_64): Added
-         INSN_CONFIG_ALT_SOURCE id
+       * include/linux/comedi.h: Added INSN_CONFIG_ALT_SOURCE id
 
 2002-03-30 15:28  fmhess
 
 
 2002-03-29 17:49  fmhess
 
-       * comedi/comedi_fops.c (tags: r0_7_64): removed some ineffectual
-         locking I put in a long time ago when I was young and naive.
+       * comedi/comedi_fops.c: removed some ineffectual locking I put in a
+         long time ago when I was young and naive.
 
 2002-03-28 12:00  fmhess
 
 
 2002-03-26 11:34  fmhess
 
-       * comedi/drivers/plx9080.h (tags: r0_7_64): corrected some
-         9060->9080 differences
+       * comedi/drivers/plx9080.h: corrected some 9060->9080 differences
 
 2002-03-24 15:39  fmhess
 
 
 2002-03-22 19:43  fmhess
 
-       * comedi/drivers/cb_pcidas.c (tags: r0_7_64): trying to make sure
-         the interrupt handler doesn't have any races with the hardware
+       * comedi/drivers/cb_pcidas.c: trying to make sure the interrupt
+         handler doesn't have any races with the hardware
 
 2002-03-22 19:42  fmhess
 
 
 2002-03-20 14:57  ds
 
-       * comedi/drivers/ni_pcimio.c (tags: r0_7_64): Remove 6115, since it
-         probably can't be supported easily.
+       * comedi/drivers/ni_pcimio.c: Remove 6115, since it probably can't
+         be supported easily.
 
 2002-03-19 15:27  ds
 
 
 2002-03-18 19:00  ds
 
-       * comedi/drivers/skel.c (tags: r0_7_64): more of the same
+       * comedi/drivers/skel.c: more of the same
 
 2002-03-18 18:47  ds
 
 
 2002-03-18 16:12  ds
 
-       * comedi/drivers/: adl_pci9118.c (tags: r0_7_64), ni_pcimio.c: [no
-         log message]
+       * comedi/drivers/: adl_pci9118.c, ni_pcimio.c: [no log message]
 
 2002-03-17 17:28  ds
 
-       * comedi/drivers/: adl_pci9118.c, adv_pci1710.c (tags: r0_7_64),
-         amcc_s5933.c (tags: r0_7_65, r0_7_64), amcc_s5933.h (tags:
-         r0_7_65, r0_7_64): Update from Michal.  Prototype of function
-         changed in amcc_s5933 driver.
+       * comedi/drivers/: adl_pci9118.c, adv_pci1710.c, amcc_s5933.c,
+         amcc_s5933.h: Update from Michal.  Prototype of function changed
+         in amcc_s5933 driver.
 
 2002-03-17 17:18  ds
 
-       * Documentation/Configure.help.append (tags: r0_7_66, r0_7_65,
-         r0_7_64): Update from Configure.help.  (Why do we need 2
-         identical files?)
+       * Documentation/Configure.help.append: Update from Configure.help.
+         (Why do we need 2 identical files?)
 
 2002-03-17 17:17  ds
 
-       * Documentation/: Configure.help (tags: r0_7_66, r0_7_65, r0_7_64),
-         Configure.help.append: Fix help entries for ADL_PCI9118
+       * Documentation/: Configure.help, Configure.help.append: Fix help
+         entries for ADL_PCI9118
 
 2002-03-17 17:08  ds
 
-       * comedi/drivers/: adl_pci9111.c (tags: r0_7_64), cb_pcidas.c,
-         cb_pcidas64.c, cb_pcidda.c (tags: r0_7_64), comedi_test.c (tags:
-         r0_7_65, r0_7_64), das6402.c (tags: r0_7_65, r0_7_64), dt3000.c
-         (tags: r0_7_64), mpc8260cpm.c (tags: r0_7_64), ni_670x.c (tags:
-         r0_7_64), ni_labpc.c, ni_pcidio.c (tags: r0_7_64), pcl726.c
-         (tags: r0_7_64), pcl818.c (tags: r0_7_64), poc.c (tags: r0_7_64),
-         rti802.c (tags: r0_7_64): Documentation updates
+       * comedi/drivers/: adl_pci9111.c, cb_pcidas.c, cb_pcidas64.c,
+         cb_pcidda.c, comedi_test.c, das6402.c, dt3000.c, mpc8260cpm.c,
+         ni_670x.c, ni_labpc.c, ni_pcidio.c, pcl726.c, pcl818.c, poc.c,
+         rti802.c: Documentation updates
 
 2002-03-17 17:03  ds
 
-       * comedi/drivers/: icp_multi.c, icp_multi.h (tags: r0_7_65) (utags:
-         r0_7_64): Fixed symbol leakage.  Updated documentation.
+       * comedi/drivers/: icp_multi.c, icp_multi.h: Fixed symbol leakage.
+         Updated documentation.
 
 2002-03-17 17:02  ds
 
-       * comedi/drivers/ni_stc.h (tags: r0_7_64): Cleaned up 611x
-         definitions
+       * comedi/drivers/ni_stc.h: Cleaned up 611x definitions
 
 2002-03-17 17:01  ds
 
-       * comedi/drivers/: ni_atmio.c (tags: r0_7_64), ni_mio_common.c,
-         ni_mio_cs.c (tags: r0_7_65, r0_7_64), ni_pcimio.c: More work on
-         611x support.  Documentation updates.
+       * comedi/drivers/: ni_atmio.c, ni_mio_common.c, ni_mio_cs.c,
+         ni_pcimio.c: More work on 611x support.  Documentation updates.
 
 2002-03-17 16:59  ds
 
 
 2002-03-16 19:39  ds
 
-       * comedi/drivers/mite.h (tags: r0_7_65, r0_7_64): Turn debugging
-         off
+       * comedi/drivers/mite.h: Turn debugging off
 
 2002-03-16 19:38  ds
 
-       * comedi/drivers/mite.c (tags: r0_7_64): Add ability to chose
-         between kmalloc'd and vmalloc'd buffers.  Default is vmalloc.
-         Added resetting code in mite_setup().
+       * comedi/drivers/mite.c: Add ability to chose between kmalloc'd and
+         vmalloc'd buffers.  Default is vmalloc.  Added resetting code in
+         mite_setup().
 
 2002-03-16 19:36  ds
 
 
 2002-03-08 23:02  fmhess
 
-       * comedi/drivers/: comedi_rt_timer.c (tags: r0_7_64),
-         comedi_test.c: converted 64 bit integer division to use do_div
+       * comedi/drivers/: comedi_rt_timer.c, comedi_test.c: converted 64
+         bit integer division to use do_div
 
 2002-03-08 22:54  fmhess
 
-       * include/asm/div64.h (tags: r0_7_65, r0_7_64): added asm/div64.h
-         compatibility header so comedi can use 64 bit integer division
-         macro
+       * include/asm/div64.h: added asm/div64.h compatibility header so
+         comedi can use 64 bit integer division macro
 
 2002-03-08 20:12  ds
 
-       * README (tags: r0_7_65, r0_7_64), Documentation/Configure.help,
-         Documentation/Configure.help.append, debian/copyright (tags:
-         branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x, r0_7_66, r0_7_65,
-         r0_7_64), rpm/comedi.spec (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69,
-         r0_7_67x, r0_7_66, r0_7_65, r0_7_64): Changed hostnames to
-         comedi.org
+       * README, Documentation/Configure.help,
+         Documentation/Configure.help.append, debian/copyright,
+         rpm/comedi.spec: Changed hostnames to comedi.org
 
 2002-03-08 19:57  ds
 
-       * comedi/comedi_fops.c, comedi/comedi_ksyms.c (tags: r0_7_64),
-         comedi/drivers.c (tags: r0_7_64), comedi/proc.c (tags: r0_7_65,
-         r0_7_64), comedi/range.c (tags: r0_7_65, r0_7_64), comedi/rt.c
-         (tags: r0_7_65, r0_7_64), comedi/drivers/8253.h (tags: r0_7_67x,
-         r0_7_66, r0_7_65, r0_7_64), comedi/drivers/8255.c (tags:
-         r0_7_64), comedi/drivers/8255.h (tags: r0_7_65, r0_7_64),
-         comedi/drivers/am9513.h (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69,
-         r0_7_67x, r0_7_66, r0_7_65, r0_7_64), comedi/drivers/cb_pcidas.c,
-         comedi/drivers/cb_pcidas64.c, comedi/drivers/cb_pcidda.c,
-         comedi/drivers/das08.c, comedi/drivers/das16.c (tags: r0_7_64),
-         comedi/drivers/das16m1.c (tags: r0_7_64), comedi/drivers/dt2811.c
-         (tags: r0_7_64), comedi/drivers/dt2814.c (tags: r0_7_65,
-         r0_7_64), comedi/drivers/dt2817.c (tags: r0_7_64),
-         comedi/drivers/dt282x.c (tags: r0_7_64), comedi/drivers/dt3000.c,
-         comedi/drivers/mite.h, comedi/drivers/ni_pcidio.c,
-         comedi/drivers/ni_pcimio.c, comedi/drivers/ni_stc.h,
-         comedi/drivers/pcl711.c (tags: r0_7_64), comedi/drivers/pcl726.c,
-         comedi/drivers/quatech_daqp_cs.c (tags: r0_7_65, r0_7_64),
-         comedi/drivers/rti800.c (tags: r0_7_64), comedi/kcomedilib/data.c
-         (tags: r0_7_64), comedi/kcomedilib/dio.c (tags: r0_7_64),
-         comedi/kcomedilib/kcomedilib_main.c (tags: r0_7_64),
-         comedi/kcomedilib/ksyms.c (tags: r0_7_64),
-         include/linux/comedi_rt.h (tags: r0_7_65, r0_7_64),
-         include/linux/comedidev.h (tags: r0_7_64),
-         include/linux/kern_compat.h (tags: r0_7_71, branch-0_7-end,
-         branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x, r0_7_66, r0_7_65,
-         r0_7_64): Global change from ds@stm.lbl.gov to ds@schleef.org
+       * comedi/comedi_fops.c, comedi/comedi_ksyms.c, comedi/drivers.c,
+         comedi/proc.c, comedi/range.c, comedi/rt.c,
+         comedi/drivers/8253.h, comedi/drivers/8255.c,
+         comedi/drivers/8255.h, comedi/drivers/am9513.h,
+         comedi/drivers/cb_pcidas.c, comedi/drivers/cb_pcidas64.c,
+         comedi/drivers/cb_pcidda.c, comedi/drivers/das08.c,
+         comedi/drivers/das16.c, comedi/drivers/das16m1.c,
+         comedi/drivers/dt2811.c, comedi/drivers/dt2814.c,
+         comedi/drivers/dt2817.c, comedi/drivers/dt282x.c,
+         comedi/drivers/dt3000.c, comedi/drivers/mite.h,
+         comedi/drivers/ni_pcidio.c, comedi/drivers/ni_pcimio.c,
+         comedi/drivers/ni_stc.h, comedi/drivers/pcl711.c,
+         comedi/drivers/pcl726.c, comedi/drivers/quatech_daqp_cs.c,
+         comedi/drivers/rti800.c, comedi/kcomedilib/data.c,
+         comedi/kcomedilib/dio.c, comedi/kcomedilib/kcomedilib_main.c,
+         comedi/kcomedilib/ksyms.c, include/linux/comedi_rt.h,
+         include/linux/comedidev.h, include/linux/kern_compat.h: Global
+         change from ds@stm.lbl.gov to ds@schleef.org
 
 2002-03-08 19:47  ds
 
 
 2002-03-08 18:08  ds
 
-       * Contributors (tags: r0_7_65, r0_7_64): I'm not good at updating
-         this list.  If you think you should be here, please tell me.
+       * Contributors: I'm not good at updating this list.  If you think
+         you should be here, please tell me.
 
 2002-03-08 18:07  ds
 
 
 2002-03-08 17:12  ds
 
-       * comedi/drivers/rtd520.c (tags: r0_7_64): Update from Dan
+       * comedi/drivers/rtd520.c: Update from Dan
 
 2002-03-08 17:06  ds
 
 
 2002-03-05 20:13  fmhess
 
-       * include/linux/pci.h (tags: r0_7_64): more compatibility functions
-         to get adl_pci9111.c driver working on 2.2 kernels
+       * include/linux/pci.h: more compatibility functions to get
+         adl_pci9111.c driver working on 2.2 kernels
 
 2002-03-05 18:14  fmhess
 
 
 2002-03-05 15:53  fmhess
 
-       * comedi/drivers/: das16.c, das800.c (tags: r0_7_64): removed some
-         redundant comments
+       * comedi/drivers/: das16.c, das800.c: removed some redundant
+         comments
 
 2002-03-04 19:23  fmhess
 
 
 2002-03-01 16:20  fmhess
 
-       * Makefile.modbuild (tags: r0_7_64): pass PATH environment variable
-         to script so 'fake' kernel source installations will still work.
+       * Makefile.modbuild: pass PATH environment variable to script so
+         'fake' kernel source installations will still work.
 
 2002-03-01 15:48  fmhess
 
-       * include/linux/ioport.h (tags: branch-0_7-start, r0_7_70, r0_7_69,
-         r0_7_67x, r0_7_66, r0_7_65, r0_7_64): 2.2.20 kernel already
-         includes compatibility functions for
-         check/request/release_mem_region()
+       * include/linux/ioport.h: 2.2.20 kernel already includes
+         compatibility functions for check/request/release_mem_region()
 
 2002-02-28 14:19  fmhess
 
 
 2002-02-27 23:53  ds
 
-       * debian/: changelog, control (utags: branch-0_7-start, r0_7_64,
-         r0_7_65, r0_7_66, r0_7_67x, r0_7_69, r0_7_70): Fix bad changelog
-         style
+       * debian/: changelog, control: Fix bad changelog style
 
 2002-02-27 23:15  ds
 
-       * debian/: changelog, comedi-modules.control (tags:
-         branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x, r0_7_66, r0_7_65,
-         r0_7_64), control, rules (tags: r0_7_65, r0_7_64): New upload
+       * debian/: changelog, comedi-modules.control, control, rules: New
+         upload
 
 2002-02-27 22:03  ds
 
 
 2002-02-26 06:09  ds
 
-       * rpm/: comedi.patch (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x,
-         r0_7_66, r0_7_65, r0_7_64), comedi.spec: let's build some RPMs.
-         From Tim Ousley <tim.ousley@ni.com>
+       * rpm/: comedi.patch, comedi.spec: let's build some RPMs.  From Tim
+         Ousley <tim.ousley@ni.com>
 
 2002-02-25 16:48  fmhess
 
 
 2002-02-15 17:39  fmhess
 
-       * comedi/drivers/amcc_s5933.c, comedi/drivers/amplc_pci230.c (tags:
-         r0_7_64), comedi/drivers/cb_pcidas.c,
-         comedi/drivers/cb_pcidas64.c, comedi/drivers/cb_pcidda.c,
-         comedi/drivers/das08.c, comedi/drivers/icp_multi.h,
-         comedi/drivers/rtd520.c, include/linux/pci.h,
-         include/linux/vmalloc.h (tags: r0_7_64): fixed pci_resource_start
-         compatibility macro so it returns address without and extra flag
-         bits set.  Some hacks to fix amcc_s5933.c stuff on 2.4
+       * comedi/drivers/amcc_s5933.c, comedi/drivers/amplc_pci230.c,
+         comedi/drivers/cb_pcidas.c, comedi/drivers/cb_pcidas64.c,
+         comedi/drivers/cb_pcidda.c, comedi/drivers/das08.c,
+         comedi/drivers/icp_multi.h, comedi/drivers/rtd520.c,
+         include/linux/pci.h, include/linux/vmalloc.h: fixed
+         pci_resource_start compatibility macro so it returns address
+         without and extra flag bits set.  Some hacks to fix amcc_s5933.c
+         stuff on 2.4
 
 2002-02-15 17:25  ds
 
 
 2002-02-11 20:34  ds
 
-       * debian/: comedi-modules.control, comedi-modules.postinst (tags:
-         branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x, r0_7_66, r0_7_65,
-         r0_7_64), comedi-modules.prerm (tags: branch-0_7-start, r0_7_70,
-         r0_7_69, r0_7_67x, r0_7_66, r0_7_65, r0_7_64), comedi.templates,
-         control, files, rules: More hacking.
+       * debian/: comedi-modules.control, comedi-modules.postinst,
+         comedi-modules.prerm, comedi.templates, control, files, rules:
+         More hacking.
 
 2002-02-11 19:49  ds
 
 
 2002-02-11 04:34  ds
 
-       * debian/: changelog, comedi-source.postinst (tags:
-         branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x, r0_7_66, r0_7_65,
-         r0_7_64), comedi-source.prerm (tags: branch-0_7-start, r0_7_70,
-         r0_7_69, r0_7_67x, r0_7_66, r0_7_65, r0_7_64), control,
-         copyright, genchanges.sh, rules: Build a Debian source package
+       * debian/: changelog, comedi-source.postinst, comedi-source.prerm,
+         control, copyright, genchanges.sh, rules: Build a Debian source
+         package
 
 2002-02-10 20:03  ds
 
 
 2002-02-10 00:05  ds
 
-       * comedi/drivers/: cb_pcidda.c, daqboard2000.c (tags: r0_7_64),
-         dt3000.c: Convert to pci_resource_start()
+       * comedi/drivers/: cb_pcidda.c, daqboard2000.c, dt3000.c: Convert
+         to pci_resource_start()
 
 2002-02-10 00:04  ds
 
 
 2002-02-08 18:11  ds
 
-       * comedi/drivers/ni_daq_dio24.c (tags: r0_7_65, r0_7_64):
-         Compilation fixes
+       * comedi/drivers/ni_daq_dio24.c: Compilation fixes
 
 2002-02-08 18:10  ds
 
 
 2002-02-08 18:09  ds
 
-       * comedi/drivers/ni_at_ao.c (tags: r0_7_64): Big hack attack
-         results in new driver.  Film at 11.
+       * comedi/drivers/ni_at_ao.c: Big hack attack results in new driver.
+         Film at 11.
 
 2002-02-08 16:03  ds
 
 
 2002-02-07 12:55  fmhess
 
-       * INSTALL (tags: r0_7_64): added a paragraph about preparing a
-         kernel source directory to match an already compiled kernel.
+       * INSTALL: added a paragraph about preparing a kernel source
+         directory to match an already compiled kernel.
 
 2002-02-06 16:48  ds
 
 
 2002-01-31 19:18  ds
 
-       * scripts/release (tags: r0_7_65, r0_7_64): Generate tar file in
-         local dir
+       * scripts/release: Generate tar file in local dir
 
 2002-01-31 19:17  ds
 
-       * Makefile (tags: r0_7_64): version bump
+       * Makefile: version bump
+
+2002-01-31 19:16  tag r0_7_63
 
 2002-01-31 19:16  ds
 
-       * scripts/release (tags: r0_7_63): Fix problem with constructing
-         new version numbers
+       * scripts/release: Fix problem with constructing new version
+         numbers
 
 2002-01-31 19:09  ds
 
-       * Changelog (tags: r0_7_63): For 0.7.63
+       * Changelog: For 0.7.63
 
 2002-01-31 19:05  ds
 
-       * comedi/comedi_fops.c (tags: r0_7_63): Fix event handling bugs.
+       * comedi/comedi_fops.c: Fix event handling bugs.
 
 2002-01-31 19:00  ds
 
 
 2002-01-26 21:28  ds
 
-       * comedi/drivers/ni_mio_common.c (tags: r0_7_63): Yet another
-         iteration.
+       * comedi/drivers/ni_mio_common.c: Yet another iteration.
 
 2002-01-26 20:54  ds
 
 
 2002-01-26 18:52  ds
 
-       * comedi/drivers/: ni_mio_common.c, ni_pcimio.c (tags: r0_7_63),
-         ni_stc.h (tags: r0_7_63): Fix AI chanlist configuration on 611x
+       * comedi/drivers/: ni_mio_common.c, ni_pcimio.c, ni_stc.h: Fix AI
+         chanlist configuration on 611x
 
 2002-01-26 18:51  ds
 
 
        * scripts/release: Export to versioned directory
 
+2002-01-22 04:47  tag r0_7_62
+
 2002-01-22 04:47  ds
 
-       * scripts/release (tags: r0_7_62): Create drivers.txt.
+       * scripts/release: Create drivers.txt.
 
 2002-01-22 04:47  ds
 
-       * Makefile (tags: r0_7_63, r0_7_62): Fix rule to make drivers.txt.
-         Add rule to run check_driver.
+       * Makefile: Fix rule to make drivers.txt.  Add rule to run
+         check_driver.
 
 2002-01-22 04:43  ds
 
        * comedi/drivers/check_cmdtest, comedi/drivers/check_driver,
-         scripts/check_cmdtest (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x,
-         r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62),
-         scripts/check_driver (tags: r0_7_63, r0_7_62): move scripts
+         scripts/check_cmdtest, scripts/check_driver: move scripts
 
 2002-01-22 04:38  ds
 
 
 2002-01-21 22:32  fmhess
 
-       * INSTALL (tags: r0_7_63, r0_7_62): added a little note about
-         PCMCIA
+       * INSTALL: added a little note about PCMCIA
 
 2002-01-21 22:11  fmhess
 
-       * comedi/drivers/: das08.c, ni_labpc.c (utags: r0_7_62, r0_7_63):
-         oops I wanted the pcmcia device names to match the names that
-         need to be passed to comedi_config
+       * comedi/drivers/: das08.c, ni_labpc.c: oops I wanted the pcmcia
+         device names to match the names that need to be passed to
+         comedi_config
 
 2002-01-21 22:08  fmhess
 
 
 2002-01-21 19:55  ds
 
-       * Rules.make (tags: r0_7_67x, r0_7_66, r0_7_65, r0_7_64, r0_7_63,
-         r0_7_62): Fix export-objs being unconditionally recompiled
+       * Rules.make: Fix export-objs being unconditionally recompiled
 
 2002-01-21 19:16  ds
 
 
 2002-01-21 19:14  ds
 
-       * comedi/drivers/comedi_rt_timer.c (tags: r0_7_63, r0_7_62): Added
-         DIO subdevice support.  Untested.  Added SPEED_LIMIT #define.
+       * comedi/drivers/comedi_rt_timer.c: Added DIO subdevice support.
+         Untested.  Added SPEED_LIMIT #define.
 
 2002-01-21 19:12  ds
 
-       * Documentation/comedi/pci.ids (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69,
-         r0_7_67x, r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62): Some
-         National Instruments PCI IDs
+       * Documentation/comedi/pci.ids: Some National Instruments PCI IDs
 
 2002-01-20 18:31  ds
 
-       * comedi/drivers/ni_pcimio.c (tags: r0_7_62): Added pci-6036e
+       * comedi/drivers/ni_pcimio.c: Added pci-6036e
 
 2002-01-15 07:08  ds
 
-       * comedi/drivers/icp_multi.c (tags: r0_7_63, r0_7_62): Change
-         malloc.h to slab.h
+       * comedi/drivers/icp_multi.c: Change malloc.h to slab.h
 
 2002-01-15 07:05  ds
 
-       * scripts/config.dist (tags: r0_7_63, r0_7_62): update
+       * scripts/config.dist: update
 
 2002-01-15 07:03  ds
 
-       * comedi/: comedi_fops.c, comedi_ksyms.c (tags: r0_7_63) (utags:
-         r0_7_62): Remove comedi_done and friends
+       * comedi/: comedi_fops.c, comedi_ksyms.c: Remove comedi_done and
+         friends
 
 2002-01-15 07:00  ds
 
-       * scripts/linux_flags/Makefile (tags: r0_7_67x, r0_7_66, r0_7_65),
-         configure (tags: r0_7_67x, r0_7_66, r0_7_65), scripts/dep.linux
-         (utags: r0_7_62, r0_7_63, r0_7_64): Fix problems with old bash
+       * scripts/linux_flags/Makefile, configure, scripts/dep.linux: Fix
+         problems with old bash
 
 2002-01-15 06:59  ds
 
-       * include/linux/comedidev.h (tags: r0_7_63, r0_7_62): Added
-         PCI_VENDOR_IDs.  Removed comedi_done and friends.  Fixed
-         compilation without CONFIG_PROC_FS.  Removed dead code.
+       * include/linux/comedidev.h: Added PCI_VENDOR_IDs.  Removed
+         comedi_done and friends.  Fixed compilation without
+         CONFIG_PROC_FS.  Removed dead code.
 
 2002-01-15 06:56  ds
 
-       * TODO (tags: r0_7_63, r0_7_62): [no log message]
+       * TODO: [no log message]
 
 2002-01-15 06:54  ds
 
-       * comedi/drivers/: adl_pci9118.c (tags: r0_7_63), adv_pci1710.c
-         (tags: r0_7_63), comedi_parport.c (tags: r0_7_64, r0_7_63),
-         das6402.c (tags: r0_7_63), dt2811.c (tags: r0_7_63), dt2814.c
-         (tags: r0_7_63), dt282x.c (tags: r0_7_63), ni_atmio16d.c (tags:
-         r0_7_64, r0_7_63), ni_mio_common.c, pcl711.c (tags: r0_7_63),
-         pcl818.c (tags: r0_7_63), rtd520.c (tags: r0_7_63) (utags:
-         r0_7_62): Convert all uses of comedi_bufcheck, comedi_done,
-         comedi_error_done, comedi_eobuf, and comedi_eos to setting
-         s->async flags and calling comedi_event.
+       * comedi/drivers/: adl_pci9118.c, adv_pci1710.c, comedi_parport.c,
+         das6402.c, dt2811.c, dt2814.c, dt282x.c, ni_atmio16d.c,
+         ni_mio_common.c, pcl711.c, pcl818.c, rtd520.c: Convert all uses
+         of comedi_bufcheck, comedi_done, comedi_error_done, comedi_eobuf,
+         and comedi_eos to setting s->async flags and calling
+         comedi_event.
 
 2002-01-15 06:50  ds
 
-       * comedi/drivers/: adl_pci9118.c, adv_pci1710.c, amcc_s5933.c
-         (tags: r0_7_63, r0_7_62), amcc_s5933.h (tags: r0_7_63, r0_7_62),
-         amplc_pci230.c (tags: r0_7_63, r0_7_62), cb_pcidas.c (tags:
-         r0_7_63, r0_7_62), comedi_parport.c, comedi_rt_timer.c,
-         daqboard2000.c (tags: r0_7_63, r0_7_62), das16.c (tags: r0_7_63,
-         r0_7_62), das1800.c (tags: r0_7_64, r0_7_63, r0_7_62), das6402.c,
-         dt2811.c, dt2814.c, dt2815.c (tags: r0_7_64, r0_7_63, r0_7_62),
-         dt2817.c (tags: r0_7_63, r0_7_62), dt282x.c, dt3000.c (tags:
-         r0_7_63, r0_7_62), fl512.c (tags: r0_7_64, r0_7_63, r0_7_62),
-         ii_pci20kc.c (tags: r0_7_64, r0_7_63, r0_7_62), mpc8260cpm.c
-         (tags: r0_7_63, r0_7_62), multiq3.c (tags: r0_7_64, r0_7_63,
-         r0_7_62), ni_670x.c (tags: r0_7_63, r0_7_62), ni_at_a2150.c
-         (tags: r0_7_64, r0_7_63, r0_7_62), ni_atmio.c (tags: r0_7_63,
-         r0_7_62), ni_atmio16d.c, ni_mio_common.c, ni_mio_cs.c (tags:
-         r0_7_63, r0_7_62), ni_pcidio.c (tags: r0_7_63, r0_7_62),
-         ni_pcimio.c, pcl711.c, pcl724.c (tags: r0_7_65, r0_7_64, r0_7_63,
-         r0_7_62), pcl725.c (tags: r0_7_64, r0_7_63, r0_7_62), pcl726.c
-         (tags: r0_7_63, r0_7_62), pcl812.c (tags: r0_7_64, r0_7_63,
-         r0_7_62), pcl818.c, pcm3730.c (tags: r0_7_64, r0_7_63, r0_7_62),
-         poc.c (tags: r0_7_63, r0_7_62), quatech_daqp_cs.c (tags: r0_7_63,
-         r0_7_62), rtd520.c, rti800.c (tags: r0_7_63, r0_7_62), skel.c
-         (tags: r0_7_63, r0_7_62), ssv_dnp.c (tags: r0_7_64, r0_7_63,
-         r0_7_62): Cleanups suggested by check_driver.  Mostly leaky
-         symbols, incorrect use of free_irq() and SA_SHIRQ, and
-         pci_device_id tables.
+       * comedi/drivers/: adl_pci9118.c, adv_pci1710.c, amcc_s5933.c,
+         amcc_s5933.h, amplc_pci230.c, cb_pcidas.c, comedi_parport.c,
+         comedi_rt_timer.c, daqboard2000.c, das16.c, das1800.c, das6402.c,
+         dt2811.c, dt2814.c, dt2815.c, dt2817.c, dt282x.c, dt3000.c,
+         fl512.c, ii_pci20kc.c, mpc8260cpm.c, multiq3.c, ni_670x.c,
+         ni_at_a2150.c, ni_atmio.c, ni_atmio16d.c, ni_mio_common.c,
+         ni_mio_cs.c, ni_pcidio.c, ni_pcimio.c, pcl711.c, pcl724.c,
+         pcl725.c, pcl726.c, pcl812.c, pcl818.c, pcm3730.c, poc.c,
+         quatech_daqp_cs.c, rtd520.c, rti800.c, skel.c, ssv_dnp.c:
+         Cleanups suggested by check_driver.  Mostly leaky symbols,
+         incorrect use of free_irq() and SA_SHIRQ, and pci_device_id
+         tables.
 
 2002-01-15 06:42  ds
 
 
 2002-01-15 06:35  ds
 
-       * comedi/drivers/: icp_multi.c, icp_multi.h (tags: r0_7_63,
-         r0_7_62): New driver
+       * comedi/drivers/: icp_multi.c, icp_multi.h: New driver
 
 2002-01-15 06:27  ds
 
-       * comedi/drivers/Makefile.in (tags: r0_7_63, r0_7_62): amcc_s5933.o
-         exports symbols.  Change DT282x CONFIG option.  Add a few
-         drivers.
+       * comedi/drivers/Makefile.in: amcc_s5933.o exports symbols.  Change
+         DT282x CONFIG option.  Add a few drivers.
 
 2002-01-15 06:26  ds
 
-       * comedi/Config.in (tags: r0_7_63, r0_7_62): Changed CONFIG option
-         for DT282x
+       * comedi/Config.in: Changed CONFIG option for DT282x
 
 2002-01-15 06:25  ds
 
 2002-01-09 21:18  fmhess
 
        * comedi/drivers/: amcc_s5933.c, amplc_pci230.c, cb_pcidas.c,
-         cb_pcidas64.c (tags: r0_7_63, r0_7_62), cb_pcidda.c (tags:
-         r0_7_63, r0_7_62), das08.c, das800.c (tags: r0_7_63, r0_7_62),
-         mite.c (tags: r0_7_63, r0_7_62), rtd520.c: got rid of some
-         preproccesor ugliness by converting to use of
+         cb_pcidas64.c, cb_pcidda.c, das08.c, das800.c, mite.c, rtd520.c:
+         got rid of some preproccesor ugliness by converting to use of
          pci_resource_start()
 
 2002-01-09 20:35  fmhess
 
-       * include/linux/pci.h (tags: r0_7_63, r0_7_62): added
-         pci_resource_start() compatibility macro
+       * include/linux/pci.h: added pci_resource_start() compatibility
+         macro
 
 2002-01-09 19:01  fmhess
 
 
 2001-12-15 01:52  fmhess
 
-       * Makefile.modbuild (tags: r0_7_63, r0_7_62), comedi/Config.in:
-         Changed Makefile.modbuild to run configure script in empty
-         environment to prevent variables from a stale LINUXDIR from
-         getting imported.  Finally got comedi/Config.in to properly
-         prompt for comedi_rt_timer depending on whether we are using an
-         RT kernel or not.
+       * Makefile.modbuild, comedi/Config.in: Changed Makefile.modbuild to
+         run configure script in empty environment to prevent variables
+         from a stale LINUXDIR from getting imported.  Finally got
+         comedi/Config.in to properly prompt for comedi_rt_timer depending
+         on whether we are using an RT kernel or not.
 
 2001-12-14 21:37  fmhess
 
 
 2001-12-14 17:10  ds
 
-       * comedi/drivers/: 8255.c (tags: r0_7_63, r0_7_62), 8255.h (tags:
-         r0_7_63, r0_7_62), amplc_pci230.c, cb_pcidas.c, cb_pcidas64.c,
-         cb_pcidda.c, daqboard2000.c, das08.c, das16.c, das16m1.c (tags:
-         r0_7_63, r0_7_62), ni_atmio16d.c, ni_labpc.c, ni_mio_common.c,
+       * comedi/drivers/: 8255.c, 8255.h, amplc_pci230.c, cb_pcidas.c,
+         cb_pcidas64.c, cb_pcidda.c, daqboard2000.c, das08.c, das16.c,
+         das16m1.c, ni_atmio16d.c, ni_labpc.c, ni_mio_common.c,
          ni_pcidio.c, pcl724.c: Change prototype of subdev_8255_init()
          (void * -> unsigned long) to make it more 64-bit friendly.
 
 
 2001-12-14 14:25  ds
 
-       * Makefile.modbuild, scripts/dep.rtai (tags: r0_7_67x, r0_7_66,
-         r0_7_65, r0_7_64, r0_7_63, r0_7_62), scripts/dep.rtlinux (tags:
-         r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62): Fix
+       * Makefile.modbuild, scripts/dep.rtai, scripts/dep.rtlinux: Fix
          Makefile.modbuild to delete Makefiles on distclean, CFLAGS not to
          duplicate kernel flags. Fix scripts/dep.* to not add to CFLAGS if
          the RTAI/RTLinux include directories don't exist.  (Might not be
 
 2001-12-14 14:20  ds
 
-       * Changelog (tags: r0_7_62): Added Changelog
+       * Changelog: Added Changelog
 
 2001-12-14 14:15  fmhess
 
 
 2001-12-10 12:32  fmhess
 
-       * include/linux/module.h (tags: r0_7_64, r0_7_63, r0_7_62): okay,
-         MODULE_LICENSE was introduced in 2.4.10
+       * include/linux/module.h: okay, MODULE_LICENSE was introduced in
+         2.4.10
 
 2001-12-10 12:27  fmhess
 
 
 2001-12-07 17:23  fmhess
 
-       * Makefile.modbuild, comedi/comedi_fops.c, comedi/rt.c (tags:
-         r0_7_63, r0_7_62), include/linux/comedidev.h,
-         include/linux/init.h (tags: r0_7_65, r0_7_64, r0_7_63, r0_7_62):
-         fixes for 2.2 compile
+       * Makefile.modbuild, comedi/comedi_fops.c, comedi/rt.c,
+         include/linux/comedidev.h, include/linux/init.h: fixes for 2.2
+         compile
 
 2001-12-07 16:53  fmhess
 
 
 2001-12-06 21:13  ds
 
-       * comedi/drivers.c (tags: r0_7_63, r0_7_62): Remove bogus driver
-         registration
+       * comedi/drivers.c: Remove bogus driver registration
 
 2001-12-06 21:12  ds
 
 
 2001-12-06 21:10  ds
 
-       * comedi/kcomedilib/kcomedilib_main.c (tags: r0_7_63, r0_7_62): Add
-         module license
+       * comedi/kcomedilib/kcomedilib_main.c: Add module license
 
 2001-12-06 21:09  ds
 
 
 2001-12-06 21:02  ds
 
-       * scripts/Menuconfig (tags: r0_7_69, r0_7_67x, r0_7_66, r0_7_65,
-         r0_7_64, r0_7_63, r0_7_62): Added menuconfig script, slightly
-         modified from 2.4.16
+       * scripts/Menuconfig: Added menuconfig script, slightly modified
+         from 2.4.16
 
 2001-12-06 21:01  ds
 
        * scripts/lxdialog/: BIG.FAT.WARNING, Makefile, checklist.c,
          colors.h, dialog.h, inputbox.c, lxdialog.c, menubox.c, msgbox.c,
-         textbox.c, util.c, yesno.c (utags: r0_7_62, r0_7_63, r0_7_64,
-         r0_7_65, r0_7_66, r0_7_67x, r0_7_69): Added lxdialog for
-         menuconfig
+         textbox.c, util.c, yesno.c: Added lxdialog for menuconfig
 
 2001-12-06 20:57  ds
 
-       * configure, comedi/Makefile.in (tags: r0_7_65, r0_7_64, r0_7_63,
-         r0_7_62), comedi/drivers/Makefile.in, scripts/dep.linux,
-         scripts/generate_makefile (tags: r0_7_69, r0_7_67x, r0_7_66,
-         r0_7_65, r0_7_64, r0_7_63, r0_7_62): Fixes to the new build
-         system
+       * configure, comedi/Makefile.in, comedi/drivers/Makefile.in,
+         scripts/dep.linux, scripts/generate_makefile: Fixes to the new
+         build system
 
 2001-12-03 17:07  fmhess
 
 
 2001-12-03 15:54  fmhess
 
-       * include/linux/slab.h (tags: r0_7_67x, r0_7_66, r0_7_65, r0_7_64,
-         r0_7_63, r0_7_62): 2.2 linux/malloc.h just includes linux/slab.h,
-         this file was causing the kmalloc versioning to get messed up
-         somehow (linux 2.2.19).
+       * include/linux/slab.h: 2.2 linux/malloc.h just includes
+         linux/slab.h, this file was causing the kmalloc versioning to get
+         messed up somehow (linux 2.2.19).
 
 2001-12-03 15:43  fmhess
 
 
 2001-12-01 00:33  ds
 
-       * patches/: patch-rtai (tags: r0_7_63, r0_7_62), rel_comedi:
-         rel_comedi moved to scripts.  patch-rtai cleaned up, although it
-         doesn't work anymore.
+       * patches/: patch-rtai, rel_comedi: rel_comedi moved to scripts.
+         patch-rtai cleaned up, although it doesn't work anymore.
 
 2001-12-01 00:29  ds
 
 
 2001-11-30 23:48  ds
 
-       * include/linux/: comedi_rt.h (tags: r0_7_63, r0_7_62),
-         comedidev.h, config.h (tags: branch-0_7-end, branch-0_7-start,
-         r0_7_70, r0_7_69, r0_7_67x, r0_7_66, r0_7_65, r0_7_64, r0_7_63,
-         r0_7_62), version.h (tags: r0_7_65, r0_7_64, r0_7_63, r0_7_62):
+       * include/linux/: comedi_rt.h, comedidev.h, config.h, version.h:
          Change malloc.h to slab.h.  Fixed header references to modbuild
          directory.
 
 2001-11-30 23:45  ds
 
-       * comedi/: comedi_fops.c, drivers.c, kvmem.h (tags: r0_7_65,
-         r0_7_64, r0_7_63, r0_7_62), rt.c: Change malloc.h to slab.h.
-         Minor fixes for RTAI on PPC.
+       * comedi/: comedi_fops.c, drivers.c, kvmem.h, rt.c: Change malloc.h
+         to slab.h.  Minor fixes for RTAI on PPC.
 
 2001-11-30 23:41  ds
 
 
 2001-11-30 23:40  ds
 
-       * INSTALL, Makefile.modbuild, README (tags: r0_7_63, r0_7_62),
-         Rules.make, configure, scripts/Configure (tags: r0_7_65, r0_7_64,
-         r0_7_63, r0_7_62), scripts/dep.linux, scripts/dep.pcmcia (tags:
-         r0_7_69, r0_7_67x, r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62),
+       * INSTALL, Makefile.modbuild, README, Rules.make, configure,
+         scripts/Configure, scripts/dep.linux, scripts/dep.pcmcia,
          scripts/dep.rtai, scripts/dep.rtlinux, scripts/generate_makefile,
-         scripts/mkdep.c (tags: r0_7_69, r0_7_67x, r0_7_66, r0_7_65,
-         r0_7_64, r0_7_63, r0_7_62): Massive rewrite of the
-         configure/build system
+         scripts/mkdep.c: Massive rewrite of the configure/build system
 
 2001-11-30 21:09  ds
 
 
 2001-11-30 20:16  ds
 
-       * comedi/kcomedilib/: data.c (tags: r0_7_63, r0_7_62), dio.c (tags:
-         r0_7_63, r0_7_62), kcomedilib_main.c, ksyms.c (tags: r0_7_63,
-         r0_7_62): Change linux/malloc.h to linux/slab.h
+       * comedi/kcomedilib/: data.c, dio.c, kcomedilib_main.c, ksyms.c:
+         Change linux/malloc.h to linux/slab.h
 
 2001-11-30 20:15  ds
 
-       * comedi/: rt_pend_tq.c, rt_pend_tq.h (tags: r0_7_74, r0_7_73,
-         r0_7_72, r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70,
-         r0_7_69, r0_7_67x) (utags: r0_7_62, r0_7_63, r0_7_64, r0_7_65,
-         r0_7_66): I'm tired of these being in a separate directory
+       * comedi/: rt_pend_tq.c, rt_pend_tq.h: I'm tired of these being in
+         a separate directory
 
 2001-11-30 20:07  ds
 
          dt282x.c, fl512.c, mite.c, mpc8260cpm.c, multiq3.c, ni_670x.c,
          ni_at_a2150.c, ni_atmio.c, ni_atmio16d.c, ni_labpc.c,
          ni_mio_cs.c, ni_pcidio.c, ni_pcimio.c, pcl711.c, pcl724.c,
-         pcl725.c, pcl726.c, pcl812.c, pcm3730.c, pcmad.c (tags: r0_7_65,
-         r0_7_64, r0_7_63, r0_7_62), poc.c, quatech_daqp_cs.c, rtd520.c,
-         rti800.c, rti802.c (tags: r0_7_63, r0_7_62), skel.c, ssv_dnp.c:
-         Change linux/malloc.h to linux/slab.h
+         pcl725.c, pcl726.c, pcl812.c, pcm3730.c, pcmad.c, poc.c,
+         quatech_daqp_cs.c, rtd520.c, rti800.c, rti802.c, skel.c,
+         ssv_dnp.c: Change linux/malloc.h to linux/slab.h
 
 2001-11-30 19:34  ds
 
 
 2001-11-18 13:26  fmhess
 
-       * comedi/drivers/ni_stc.h (tags: r0_7_62): fixed offset for ao mode
-         1 register, multiple channel analog out should work now
+       * comedi/drivers/ni_stc.h: fixed offset for ao mode 1 register,
+         multiple channel analog out should work now
 
 2001-11-18 13:08  fmhess
 
        * comedi/drivers/ni_stc.h: fixed an error I made
 
+2001-11-16 15:59  tag r0_7_61
+
 2001-11-16 15:59  fmhess
 
-       * comedi/kcomedilib/kcomedilib_main.c (tags: r0_7_61): added
-         initialization of async->cur_chan and cur_chanlist_len to
-         comedi_command()
+       * comedi/kcomedilib/kcomedilib_main.c: added initialization of
+         async->cur_chan and cur_chanlist_len to comedi_command()
 
 2001-11-16 15:42  fmhess
 
-       * comedi/drivers/ni_labpc.c (tags: r0_7_61): fixed bug that caused
-         nasty interaction between analog input command and analog output
+       * comedi/drivers/ni_labpc.c: fixed bug that caused nasty
+         interaction between analog input command and analog output
          instruction
 
 2001-11-16 15:04  fmhess
 
-       * comedi/drivers/cb_pcidda.c (tags: r0_7_61): seems to work okay,
-         removed some debugging message spam
+       * comedi/drivers/cb_pcidda.c: seems to work okay, removed some
+         debugging message spam
 
 2001-11-15 13:22  fmhess
 
 
 2001-11-14 15:28  fmhess
 
-       * comedi/drivers/ni_mio_common.c (tags: r0_7_61): removed some
-         duplicated function declarations
+       * comedi/drivers/ni_mio_common.c: removed some duplicated function
+         declarations
 
 2001-11-14 12:09  fmhess
 
 
 2001-11-12 13:58  fmhess
 
-       * comedi/drivers/cb_pcidas.c (tags: r0_7_61): disabled driver's
-         debugging messages
+       * comedi/drivers/cb_pcidas.c: disabled driver's debugging messages
 
 2001-11-09 18:30  ds
 
-       * scripts/release (tags: r0_7_61): The release script.  I could
-         never find it when necessary, so it's here now.
+       * scripts/release: The release script.  I could never find it when
+         necessary, so it's here now.
 
 2001-11-09 16:29  fmhess
 
-       * comedi/drivers/: ni_mio_common.c, ni_stc.h (tags: r0_7_61): fixed
-         problem with setting of bipolar mode in analog out command noted
-         by Amish Dave.  However, have noticed that no data munging
-         appears to ever get done on analog output commands (it does get
-         done in ao insn) so this is still a problem that needs to be
-         fixed.
+       * comedi/drivers/: ni_mio_common.c, ni_stc.h: fixed problem with
+         setting of bipolar mode in analog out command noted by Amish
+         Dave.  However, have noticed that no data munging appears to ever
+         get done on analog output commands (it does get done in ao insn)
+         so this is still a problem that needs to be fixed.
 
 2001-11-09 15:26  fmhess
 
 
 2001-11-08 12:32  fmhess
 
-       * scripts/dep.linux (tags: r0_7_61): made prompting for linux
-         directory work like prompting for rtlinux directory (doesn't
-         assume directory found in .sourcedirs is correct)
+       * scripts/dep.linux: made prompting for linux directory work like
+         prompting for rtlinux directory (doesn't assume directory found
+         in .sourcedirs is correct)
 
 2001-11-07 15:33  fmhess
 
-       * comedi/drivers/mite.c (tags: r0_7_61): took into account
-         possibility of pci_enable_device failure
+       * comedi/drivers/mite.c: took into account possibility of
+         pci_enable_device failure
 
 2001-11-07 15:31  fmhess
 
 
 2001-11-07 15:31  fmhess
 
-       * etc/pcmcia/comedi.conf (tags: r0_7_61): added daqcard-1200
+       * etc/pcmcia/comedi.conf: added daqcard-1200
 
 2001-11-06 19:43  fmhess
 
 
 2001-11-06 17:23  ds
 
-       * scripts/config.dist (tags: r0_7_61): Updated with new drivers
+       * scripts/config.dist: Updated with new drivers
 
 2001-11-06 17:16  ds
 
-       * comedi/drivers/comedi_rt_timer.c (tags: r0_7_61): Added
-         implementation of comedi_poll().  This function may be useful in
-         the core, although presumably the behavior should be different if
-         the driver doesn't implement poll.
+       * comedi/drivers/comedi_rt_timer.c: Added implementation of
+         comedi_poll().  This function may be useful in the core, although
+         presumably the behavior should be different if the driver doesn't
+         implement poll.
 
 2001-11-06 17:13  ds
 
-       * comedi/drivers/adv_pci1710.c (tags: r0_7_61): Change #ifdefs to
-         DPRINTK() macro.  Eliminated bogus udelay(1)s.
+       * comedi/drivers/adv_pci1710.c: Change #ifdefs to DPRINTK() macro.
+         Eliminated bogus udelay(1)s.
 
 2001-11-06 13:43  fmhess
 
 
 2001-11-02 15:04  fmhess
 
-       * comedi/drivers/das08.c (tags: r0_7_61): got rid of some excess
-         ioport allocation
+       * comedi/drivers/das08.c: got rid of some excess ioport allocation
 
 2001-11-02 14:48  fmhess
 
 
 2001-10-29 18:53  fmhess
 
-       * comedi/drivers/das16.c (tags: r0_7_61): fixed stop_src ==
-         TRIG_NONE bug
+       * comedi/drivers/das16.c: fixed stop_src == TRIG_NONE bug
 
 2001-10-26 17:02  fmhess
 
-       * comedi/: Config.in (tags: r0_7_61), drivers/Makefile (tags:
-         r0_7_61), drivers/ni_labpc.c: new driver.  insn support only.
-         untested.
+       * comedi/: Config.in, drivers/Makefile, drivers/ni_labpc.c: new
+         driver.  insn support only.  untested.
 
 2001-10-25 18:11  fmhess
 
-       * comedi/drivers/: adl_pci9118.c (tags: r0_7_61), adv_pci1710.c,
-         das1800.c (tags: r0_7_61), dt2811.c (tags: r0_7_61), multiq3.c
-         (tags: r0_7_61), pcl726.c (tags: r0_7_61), pcl818.c (tags:
-         r0_7_61), rti800.c (tags: r0_7_61), skel.c (tags: r0_7_61): fixed
+       * comedi/drivers/: adl_pci9118.c, adv_pci1710.c, das1800.c,
+         dt2811.c, multiq3.c, pcl726.c, pcl818.c, rti800.c, skel.c: fixed
          a bunch of insn_bits functions
 
 2001-10-24 18:21  ds
 
 2001-10-24 18:19  ds
 
-       * include/linux/comedi.h (tags: r0_7_63, r0_7_62, r0_7_61): Added
-         flags in chanspec description
+       * include/linux/comedi.h: Added flags in chanspec description
 
 2001-10-24 18:16  ds
 
-       * comedi/drivers/ssv_dnp.c (tags: r0_7_61): Added in-line
-         documentation section
+       * comedi/drivers/ssv_dnp.c: Added in-line documentation section
 
 2001-10-24 18:12  ds
 
-       * comedi/: Config.in, drivers/Makefile, drivers/Makefile.in (tags:
-         r0_7_61): Added ssv_dnp driver
+       * comedi/: Config.in, drivers/Makefile, drivers/Makefile.in: Added
+         ssv_dnp driver
 
 2001-10-24 18:11  ds
 
 
 2001-10-19 11:37  fmhess
 
-       * comedi/comedi_fops.c (tags: r0_7_61): put back line that I
-         shouldn't have removed
+       * comedi/comedi_fops.c: put back line that I shouldn't have removed
 
 2001-10-18 19:16  fmhess
 
-       * comedi/comedi_fops.c, include/linux/comedidev.h (tags: r0_7_61):
-         read now returns -EIO (once) at end of data stream if aquisition
-         was terminated by an error, returns 0 if aquisition terminated
-         normally.
+       * comedi/comedi_fops.c, include/linux/comedidev.h: read now returns
+         -EIO (once) at end of data stream if aquisition was terminated by
+         an error, returns 0 if aquisition terminated normally.
 
 2001-10-09 18:20  fmhess
 
 
 2001-10-07 16:45  fmhess
 
-       * comedi/drivers/das16m1.c (tags: r0_7_61): fixed bug with stop_src
-         == TRIG_NONE introduced with changes for poll() code
+       * comedi/drivers/das16m1.c: fixed bug with stop_src == TRIG_NONE
+         introduced with changes for poll() code
 
 2001-10-07 16:39  fmhess
 
 
 2001-10-04 19:51  ds
 
-       * scripts/doc_devlist (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x,
-         r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62, r0_7_61): change
-         formatting
+       * scripts/doc_devlist: change formatting
 
 2001-10-01 20:46  fmhess
 
 
 2001-09-30 13:01  fmhess
 
-       * comedi/drivers/cb_pcidas64.c (tags: r0_7_61): fixed 2.4 compile
-         error and some bugs
+       * comedi/drivers/cb_pcidas64.c: fixed 2.4 compile error and some
+         bugs
 
 2001-09-30 12:36  fmhess
 
 
 2001-09-27 17:20  ds
 
-       * comedi/drivers/ni_pcimio.c (tags: r0_7_61): MAX_N_CALDACS should
-         be 28
+       * comedi/drivers/ni_pcimio.c: MAX_N_CALDACS should be 28
 
 2001-09-27 17:20  ds
 
-       * TODO (tags: r0_7_61): [no log message]
+       * TODO: [no log message]
 
 2001-09-27 17:19  ds
 
-       * comedi/drivers/dt2801.c (tags: r0_7_64, r0_7_63, r0_7_62,
-         r0_7_61): Remove useless debugging message
+       * comedi/drivers/dt2801.c: Remove useless debugging message
 
 2001-09-27 12:02  fmhess
 
 
 2001-09-21 19:22  ds
 
-       * comedi/drivers/dt3000.c (tags: r0_7_61): Fixed Devices:
+       * comedi/drivers/dt3000.c: Fixed Devices:
 
 2001-09-20 13:44  fmhess
 
 
 2001-09-19 16:43  fmhess
 
-       * comedi/drivers/: cb_pcidas64.c, plx9080.h (tags: r0_7_63,
-         r0_7_62, r0_7_61): more pci dma stuff, ready for inital testing
+       * comedi/drivers/: cb_pcidas64.c, plx9080.h: more pci dma stuff,
+         ready for inital testing
 
 2001-09-19 15:48  fmhess
 
 
 2001-09-19 15:46  fmhess
 
-       * comedi/drivers/poc.c (tags: r0_7_61): removed an obsolete comment
+       * comedi/drivers/poc.c: removed an obsolete comment
 
 2001-09-19 15:43  fmhess
 
 
 2001-09-19 15:25  fmhess
 
-       * include/linux/pci.h (tags: r0_7_61): took out line that belonged
-         in init.h, added include for definition of pci_alloc_consistent()
-         used by older kernels
+       * include/linux/pci.h: took out line that belonged in init.h, added
+         include for definition of pci_alloc_consistent() used by older
+         kernels
 
 2001-09-18 20:35  ds
 
 2001-09-18 19:45  ds
 
        * comedi/drivers/: cb_pcidas64.c, comedi_rt_timer.c, das08.c,
-         das16.c, das16m1.c, das1800.c, das6402.c (tags: r0_7_61),
-         das800.c (tags: r0_7_61), rti800.c, rti802.c (tags: r0_7_61),
-         skel.c: Added Devices: documentation to rest of drivers
+         das16.c, das16m1.c, das1800.c, das6402.c, das800.c, rti800.c,
+         rti802.c, skel.c: Added Devices: documentation to rest of drivers
 
 2001-09-18 19:44  ds
 
 
 2001-09-18 18:51  ds
 
-       * scripts/: call_trace (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x,
-         r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62, r0_7_61),
-         doc_devlist, dump_doc (tags: r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x,
-         r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62, r0_7_61): Scripts to
-         extract documentation
+       * scripts/: call_trace, doc_devlist, dump_doc: Scripts to extract
+         documentation
 
 2001-09-18 18:49  ds
 
-       * include/modbuild/.keepme (tags: r0_7_61): [no log message]
+       * include/modbuild/.keepme: [no log message]
 
 2001-09-18 18:45  ds
 
-       * include/linux/init.h (tags: r0_7_61): new
+       * include/linux/init.h: new
 
 2001-09-18 16:54  ds
 
-       * comedi/drivers/ni_pcidio.c (tags: r0_7_61): Fixed a segfault in
-         nidio_detach() when configure fails because it can't find board
+       * comedi/drivers/ni_pcidio.c: Fixed a segfault in nidio_detach()
+         when configure fails because it can't find board
 
 2001-09-18 15:28  ds
 
-       * comedi/drivers/daqboard2000.c (tags: r0_7_61): Change file
-         location comment
+       * comedi/drivers/daqboard2000.c: Change file location comment
 
 2001-09-18 15:20  ds
 
 
 2001-09-13 23:59  ds
 
-       * comedi/: comedi_fops.c, drivers.c (tags: r0_7_61): Removed last
-         remnants of comedi_trig support for drivers
+       * comedi/: comedi_fops.c, drivers.c: Removed last remnants of
+         comedi_trig support for drivers
 
 2001-09-13 23:57  ds
 
-       * comedi/trig.c (tags: r0_7_61): rewrote much of the trig support.
-         No longer uses any of the old internal trig stuff.
+       * comedi/trig.c: rewrote much of the trig support.  No longer uses
+         any of the old internal trig stuff.
 
 2001-09-13 23:54  ds
 
 
 2001-09-13 23:16  ds
 
-       * comedi/kcomedilib/: kcomedilib_main.c, ksyms.c (tags: r0_7_61):
-         Complete phase-out of comedi_trig support
+       * comedi/kcomedilib/: kcomedilib_main.c, ksyms.c: Complete
+         phase-out of comedi_trig support
 
 2001-09-13 22:44  ds
 
-       * comedi/drivers/: 8255.c (tags: r0_7_61), amplc_pci230.c (tags:
-         r0_7_61), cb_pcidas.c, cb_pcidda.c, comedi_parport.c (tags:
-         r0_7_61), daqboard2000.c, dt2801.c, fl512.c (tags: r0_7_61),
-         ii_pci20kc.c (tags: r0_7_61), mpc8260cpm.c (tags: r0_7_61),
-         multiq3.c, ni_at_a2150.c (tags: r0_7_61), ni_mio_cs.c (tags:
-         r0_7_61), ni_pcidio.c, pcl711.c (tags: r0_7_61), pcl724.c (tags:
-         r0_7_61), pcl725.c (tags: r0_7_61), pcl726.c, pcm3730.c (tags:
-         r0_7_61), rtd520.c (tags: r0_7_61), rti800.c, rti802.c: Add list
-         of devices to documentation
+       * comedi/drivers/: 8255.c, amplc_pci230.c, cb_pcidas.c,
+         cb_pcidda.c, comedi_parport.c, daqboard2000.c, dt2801.c, fl512.c,
+         ii_pci20kc.c, mpc8260cpm.c, multiq3.c, ni_at_a2150.c,
+         ni_mio_cs.c, ni_pcidio.c, pcl711.c, pcl724.c, pcl725.c, pcl726.c,
+         pcm3730.c, rtd520.c, rti800.c, rti802.c: Add list of devices to
+         documentation
 
 2001-09-13 22:19  ds
 
          amplc_pci230.c, cb_pcidas.c, cb_pcidas64.c, cb_pcidda.c,
          comedi_parport.c, comedi_rt_timer.c, daqboard2000.c, das08.c,
          das16.c, das16m1.c, das1800.c, das6402.c, das800.c, dt2801.c,
-         dt2811.c, dt2814.c (tags: r0_7_61), dt2815.c (tags: r0_7_61),
-         dt2817.c (tags: r0_7_61), dt282x.c (tags: r0_7_61), dt3000.c,
-         fl512.c, ii_pci20kc.c, mpc8260cpm.c, multiq3.c, ni_670x.c (tags:
-         r0_7_61), ni_at_a2150.c, ni_atmio.c (tags: r0_7_61),
-         ni_atmio16d.c (tags: r0_7_61), ni_mio_cs.c, ni_pcidio.c,
-         ni_pcimio.c, pcl711.c, pcl724.c, pcl725.c, pcl726.c, pcl812.c
-         (tags: r0_7_61), pcl818.c, pcm3730.c, pcmad.c (tags: r0_7_61),
-         poc.c, quatech_daqp_cs.c (tags: r0_7_61), rtd520.c, rti800.c,
-         rti802.c, skel.c: Moved driver documentation to inline
-         documentation
+         dt2811.c, dt2814.c, dt2815.c, dt2817.c, dt282x.c, dt3000.c,
+         fl512.c, ii_pci20kc.c, mpc8260cpm.c, multiq3.c, ni_670x.c,
+         ni_at_a2150.c, ni_atmio.c, ni_atmio16d.c, ni_mio_cs.c,
+         ni_pcidio.c, ni_pcimio.c, pcl711.c, pcl724.c, pcl725.c, pcl726.c,
+         pcl812.c, pcl818.c, pcm3730.c, pcmad.c, poc.c, quatech_daqp_cs.c,
+         rtd520.c, rti800.c, rti802.c, skel.c: Moved driver documentation
+         to inline documentation
 
 2001-09-12 18:45  ds
 
-       * comedi/drivers/check_driver (tags: r0_7_61): Added check for
-         documentation in source code
+       * comedi/drivers/check_driver: Added check for documentation in
+         source code
 
 2001-09-12 18:23  ds
 
-       * Documentation/Configure.help (tags: r0_7_63, r0_7_62, r0_7_61):
-         Removed VD_DDS
+       * Documentation/Configure.help: Removed VD_DDS
 
 2001-09-12 17:00  fmhess
 
 
 2001-09-11 20:05  fmhess
 
-       * include/linux/: ioport.h (tags: r0_7_63, r0_7_62, r0_7_61),
-         pci.h: added some compatibility macros for pci-dma buffer related
-         functions, stolen from Donald Becker's starfire.c driver
+       * include/linux/: ioport.h, pci.h: added some compatibility macros
+         for pci-dma buffer related functions, stolen from Donald Becker's
+         starfire.c driver
 
 2001-09-11 19:46  fmhess
 
 
 2001-09-05 19:39  ds
 
-       * include/linux/: module.h (tags: r0_7_61), pci.h: Added compat
-         code for MODULE_DEVICE_TABLE()
+       * include/linux/: module.h, pci.h: Added compat code for
+         MODULE_DEVICE_TABLE()
 
 2001-09-05 19:39  ds
 
 
 2001-09-03 20:35  ds
 
-       * Documentation/comedi/drivers.txt (tags: r0_7_61): Added stub for
-         amplc_pci230
+       * Documentation/comedi/drivers.txt: Added stub for amplc_pci230
 
 2001-09-03 20:31  ds
 
 
 2001-08-27 17:36  fmhess
 
-       * include/linux/: config.h, version.h (utags: r0_7_61): terminated
-         with newline
+       * include/linux/: config.h, version.h: terminated with newline
 
 2001-08-27 17:32  fmhess
 
 
 2001-08-27 17:05  fmhess
 
-       * include/linux/fs.h (tags: r0_7_67x, r0_7_66, r0_7_65, r0_7_64,
-         r0_7_63, r0_7_62, r0_7_61): fixed version checking for 2.2
-         kernels
+       * include/linux/fs.h: fixed version checking for 2.2 kernels
 
 2001-08-27 17:04  fmhess
 
-       * include/linux/sched.h (tags: r0_7_67x, r0_7_66, r0_7_65, r0_7_64,
-         r0_7_63, r0_7_62, r0_7_61): fixed conflict with poll.h
+       * include/linux/sched.h: fixed conflict with poll.h
 
 2001-08-27 05:58  ds
 
-       * comedi/: comedi_fops.c, proc.c (tags: r0_7_63, r0_7_62, r0_7_61),
-         kcomedilib/data.c (tags: r0_7_61), kcomedilib/dio.c (tags:
-         r0_7_61), kcomedilib/kcomedilib_main.c, kcomedilib/ksyms.c: Fixes
-         for compilation on 2.0.x
+       * comedi/: comedi_fops.c, proc.c, kcomedilib/data.c,
+         kcomedilib/dio.c, kcomedilib/kcomedilib_main.c,
+         kcomedilib/ksyms.c: Fixes for compilation on 2.0.x
 
 2001-08-27 05:56  ds
 
-       * Makefile.modbuild (tags: r0_7_61): Added -nostdinc flag.  Comedi
-         _should_ compile with it.
+       * Makefile.modbuild: Added -nostdinc flag.  Comedi _should_ compile
+         with it.
 
 2001-08-27 05:55  ds
 
-       * include/: asm/dma.h (tags: r0_7_67x, r0_7_66, r0_7_65, r0_7_64,
-         r0_7_63, r0_7_62, r0_7_61), linux/comedidev.h, linux/fs.h,
-         linux/kmod.h (tags: r0_7_67x, r0_7_66, r0_7_65, r0_7_64, r0_7_63,
-         r0_7_62, r0_7_61), linux/module.h, linux/poll.h (tags: r0_7_67x,
-         r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62, r0_7_61),
-         linux/sched.h, linux/spinlock.h (tags: r0_7_67x, r0_7_66,
-         r0_7_65, r0_7_64, r0_7_63, r0_7_62, r0_7_61), linux/timer.h
-         (tags: r0_7_67x, r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62,
-         r0_7_61), linux/vmalloc.h (tags: r0_7_63, r0_7_62, r0_7_61):
-         Fixes for compiling with 2.0.x
+       * include/: asm/dma.h, linux/comedidev.h, linux/fs.h, linux/kmod.h,
+         linux/module.h, linux/poll.h, linux/sched.h, linux/spinlock.h,
+         linux/timer.h, linux/vmalloc.h: Fixes for compiling with 2.0.x
 
 2001-08-27 05:52  ds
 
-       * Documentation/Configure.help.append (tags: r0_7_63, r0_7_62,
-         r0_7_61): A copy of Configure.help, for use with kbuild-2.5
+       * Documentation/Configure.help.append: A copy of Configure.help,
+         for use with kbuild-2.5
 
 2001-08-27 04:54  ds
 
 
 2001-08-19 22:37  fmhess
 
-       * Documentation/comedi/Hardware_Driver.HOWTO (tags: r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x,
-         r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62, r0_7_61): added
-         online version of linux device drivers to reference list
+       * Documentation/comedi/Hardware_Driver.HOWTO: added online version
+         of linux device drivers to reference list
 
 2001-08-19 22:36  fmhess
 
 
 2001-08-13 06:33  ds
 
-       * Config.in (tags: r0_7_71, branch-0_7-end, branch-0_7-start,
-         r0_7_70, r0_7_69, r0_7_67x, r0_7_66, r0_7_65, r0_7_64, r0_7_63,
-         r0_7_62, r0_7_61): Want to keep comedi in comedi/, not
-         drivers/comedi/
+       * Config.in: Want to keep comedi in comedi/, not drivers/comedi/
 
 2001-08-13 06:29  ds
 
-       * comedi/: comedi_fops.c, comedi_ksyms.c (tags: r0_7_61),
-         drivers.c, range.c (tags: r0_7_63, r0_7_62, r0_7_61): Eliminated
-         test on LINUX_V2x in favor of LINUX_VERSION_CODE tests.
+       * comedi/: comedi_fops.c, comedi_ksyms.c, drivers.c, range.c:
+         Eliminated test on LINUX_V2x in favor of LINUX_VERSION_CODE
+         tests.
 
 2001-08-13 06:27  ds
 
 
 2001-08-13 06:26  ds
 
-       * include/linux/comedi_rt.h (tags: r0_7_61): Add error to check if
-         included directly
+       * include/linux/comedi_rt.h: Add error to check if included
+         directly
 
 2001-08-13 06:26  ds
 
-       * comedi/rt_pend_tq/rt_pend_tq.c (tags: r0_7_61): Include comedidev
-         instead of comedi_rt
+       * comedi/rt_pend_tq/rt_pend_tq.c: Include comedidev instead of
+         comedi_rt
 
 2001-08-13 06:25  ds
 
 
 2001-08-13 06:23  ds
 
-       * comedi/: Makefile, rt.c (utags: r0_7_61): Initial priority IRQ
-         support
+       * comedi/: Makefile, rt.c: Initial priority IRQ support
 
 2001-08-13 06:21  ds
 
-       * Makefile.in.append (tags: r0_7_67x, r0_7_66, r0_7_65, r0_7_64,
-         r0_7_63, r0_7_62, r0_7_61): Keep comedi in same directory for now
+       * Makefile.in.append: Keep comedi in same directory for now
 
 2001-08-13 06:01  ds
 
-       * comedi/kern_compat.h, include/linux/kern_compat.h (tags: r0_7_63,
-         r0_7_62, r0_7_61): Move header file to the place where header
-         files belong
+       * comedi/kern_compat.h, include/linux/kern_compat.h: Move header
+         file to the place where header files belong
 
 2001-08-13 05:41  ds
 
 
 2001-08-13 05:39  ds
 
-       * comedi/Config.in, scripts/config.in (tags: r0_7_69, r0_7_67x,
-         r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62, r0_7_61): Move
-         define_bool for CONFIG_COMEDI
+       * comedi/Config.in, scripts/config.in: Move define_bool for
+         CONFIG_COMEDI
 
 2001-08-13 05:35  ds
 
-       * Config.in, Makefile.in.append, comedi/Makefile.in (tags:
-         r0_7_61), comedi/drivers/Makefile.in,
-         comedi/kcomedilib/Makefile.in (tags: r0_7_64, r0_7_63, r0_7_62,
-         r0_7_61): Added support for kbuild-2.5
+       * Config.in, Makefile.in.append, comedi/Makefile.in,
+         comedi/drivers/Makefile.in, comedi/kcomedilib/Makefile.in: Added
+         support for kbuild-2.5
 
 2001-08-10 18:29  ds
 
 
 2001-08-10 18:27  ds
 
-       * Documentation/comedi/insn_config (tags: r0_7_63, r0_7_62,
-         r0_7_61): Moved some stuff to comedilib sgml doc
+       * Documentation/comedi/insn_config: Moved some stuff to comedilib
+         sgml doc
 
 2001-08-10 18:26  ds
 
 
 2001-08-09 05:10  ds
 
-       * comedi/drivers/check_cmdtest (tags: r0_7_61): fixes for
-         amplc_pci230.c
+       * comedi/drivers/check_cmdtest: fixes for amplc_pci230.c
 
 2001-08-09 04:18  ds
 
 
 2001-08-06 17:58  fmhess
 
-       * Documentation/comedi/hardware (tags: r0_7_61): added
-         pcidas-1602/16/jr entry
+       * Documentation/comedi/hardware: added pcidas-1602/16/jr entry
 
 2001-08-06 17:48  fmhess
 
 
 2001-08-01 08:09  ds
 
-       * Makefile (tags: r0_7_61): version bump
+       * Makefile: version bump
 
 2001-08-01 06:08  ds
 
 
 2001-07-30 16:36  ds
 
-       * README (tags: r0_7_61): Fix typo
+       * README: Fix typo
 
 2001-07-30 14:52  fmhess
 
 
 2001-07-28 15:48  timousley
 
-       * comedi/drivers/: mite.c, mite.h (tags: r0_7_63, r0_7_62,
-         r0_7_61), ni_mio_common.c: MITE DMA works with any size
-         acquisition and any size buffer, although large buffers are still
-         best.
+       * comedi/drivers/: mite.c, mite.h, ni_mio_common.c: MITE DMA works
+         with any size acquisition and any size buffer, although large
+         buffers are still best.
 
 2001-07-28 10:50  fmhess
 
        * comedi/drivers/cb_pcidas.c: rounded up minimum conversion periods
          so cmd test doesn't get stuck between returning 3 and 4
 
+2001-07-26 18:43  tag r0_7_60
+
 2001-07-26 18:43  ds
 
-       * Documentation/comedi/FAQ (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69,
-         r0_7_67x, r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62, r0_7_61,
-         r0_7_60): Updated with my least favorite questions to answer.
+       * Documentation/comedi/FAQ: Updated with my least favorite
+         questions to answer.
 
 2001-07-26 18:28  ds
 
-       * INSTALL (tags: r0_7_61, r0_7_60): Make note of Red Hat kernel doc
+       * INSTALL: Make note of Red Hat kernel doc
 
 2001-07-26 18:26  ds
 
-       * Documentation/comedi/redhat-notes (tags: r0_7_74, r0_7_73,
-         r0_7_72, r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70,
-         r0_7_69, r0_7_67x, r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62,
-         r0_7_61, r0_7_60): More info
+       * Documentation/comedi/redhat-notes: More info
 
 2001-07-26 09:16  ds
 
-       * comedi/drivers/ni_mio_cs.c (tags: r0_7_60): Fix for PowerPC.  I'd
-         bet it breaks i386.
+       * comedi/drivers/ni_mio_cs.c: Fix for PowerPC.  I'd bet it breaks
+         i386.
 
 2001-07-26 09:14  ds
 
-       * comedi/drivers/comedi_rt_timer.c (tags: r0_7_60): Fixes for RTAI.
-         Change RT_TASK to be kmalloc'ed instead of part of the devpriv
-         structure because of alignment issues.  Switched to one-shot mode
-         (for RTAI).  Changed task priority to not conflict with RTAI
-         watchdog.  More careful about task init failure.
+       * comedi/drivers/comedi_rt_timer.c: Fixes for RTAI.  Change RT_TASK
+         to be kmalloc'ed instead of part of the devpriv structure because
+         of alignment issues.  Switched to one-shot mode (for RTAI).
+         Changed task priority to not conflict with RTAI watchdog.  More
+         careful about task init failure.
 
 2001-07-26 09:05  ds
 
-       * include/linux/config.h (tags: r0_7_60): Fix to pull in the RTAI
-         config.h
+       * include/linux/config.h: Fix to pull in the RTAI config.h
 
 2001-07-25 20:39  fmhess
 
-       * comedi/drivers/pcl818.c (tags: r0_7_60): Change from Michal
-         Dobes.  Enables shared interrupt for rtc, so multiple interrupt
-         handlers can be attached to its interrupt.  It's wierd, but what
-         the heck.
+       * comedi/drivers/pcl818.c: Change from Michal Dobes.  Enables
+         shared interrupt for rtc, so multiple interrupt handlers can be
+         attached to its interrupt.  It's wierd, but what the heck.
 
 2001-07-25 19:21  fmhess
 
-       * comedi/rt.c (tags: r0_7_60): fix to prevent use of rt interrupt
-         with shared interrupt
+       * comedi/rt.c: fix to prevent use of rt interrupt with shared
+         interrupt
 
 2001-07-24 12:35  fmhess
 
-       * comedi/drivers/cb_pcidas.c (tags: r0_7_60): fixed analog input
-         insn wait for end of conversion, fixed external start trigger,
-         tweaked interrupt clearing.
+       * comedi/drivers/cb_pcidas.c: fixed analog input insn wait for end
+         of conversion, fixed external start trigger, tweaked interrupt
+         clearing.
 
 2001-07-24 06:38  ds
 
 
 2001-07-24 06:36  ds
 
-       * include/linux/comedidev.h (tags: r0_7_60): subdevice structure
-         elements do_lock and do_unlock are unused, so comment them out
+       * include/linux/comedidev.h: subdevice structure elements do_lock
+         and do_unlock are unused, so comment them out
 
 2001-07-24 06:35  ds
 
-       * comedi/kcomedilib/kcomedilib_main.c (tags: r0_7_60): Remove
-         s->do_lock, s->do_unlock
+       * comedi/kcomedilib/kcomedilib_main.c: Remove s->do_lock,
+         s->do_unlock
 
 2001-07-24 06:35  ds
 
-       * comedi/drivers/ni_pcidio.c (tags: r0_7_60): Change some print's
-         to DPRINTK's
+       * comedi/drivers/ni_pcidio.c: Change some print's to DPRINTK's
 
 2001-07-24 06:34  ds
 
-       * comedi/drivers/ni_atmio.c (tags: r0_7_60): fix typo in document
-         number
+       * comedi/drivers/ni_atmio.c: fix typo in document number
 
 2001-07-24 06:33  ds
 
-       * comedi/drivers/check_driver (tags: r0_7_60): Uncomment
-         pci_enable_device check
+       * comedi/drivers/check_driver: Uncomment pci_enable_device check
 
 2001-07-24 06:33  ds
 
-       * comedi/drivers/check_cmdtest (tags: r0_7_60): Cleanups, add
-         check_timed()
+       * comedi/drivers/check_cmdtest: Cleanups, add check_timed()
 
 2001-07-24 06:32  ds
 
 
 2001-07-23 20:28  fmhess
 
-       * comedi/drivers/: das16.c, das1800.c, ni_at_a2150.c (utags:
-         r0_7_60): added virt_to_bus() translations to set_dma_addr()
-         arguments
+       * comedi/drivers/: das16.c, das1800.c, ni_at_a2150.c: added
+         virt_to_bus() translations to set_dma_addr() arguments
 
 2001-07-23 19:04  fmhess
 
 
 2001-07-23 14:47  ds
 
-       * TODO (tags: r0_7_60): [no log message]
+       * TODO: [no log message]
 
 2001-07-23 14:47  ds
 
-       * comedi/: Config.in, drivers/pcl812.c (utags: r0_7_60): Update
-         from Michal Dobes
+       * comedi/: Config.in, drivers/pcl812.c: Update from Michal Dobes
 
 2001-07-23 14:46  ds
 
        * Documentation/: Configure.help, comedi/drivers.txt,
-         comedi/hardware (utags: r0_7_60): Updates from Michal Dobes
+         comedi/hardware: Updates from Michal Dobes
 
 2001-07-23 14:45  ds
 
-       * Documentation/comedi/insn_config (tags: r0_7_60): Added some
-         stuff
+       * Documentation/comedi/insn_config: Added some stuff
 
 2001-07-23 14:43  ds
 
-       * comedi/drivers/rtd520.c (tags: r0_7_60): Patch from Dan
+       * comedi/drivers/rtd520.c: Patch from Dan
 
 2001-07-23 11:27  fmhess
 
 
 2001-07-20 14:40  fmhess
 
-       * comedi/drivers/: cb_pcidas.c, das16m1.c (tags: r0_7_60),
-         das1800.c, das800.c (tags: r0_7_60): made chanlist cmdtests
-         return 5
+       * comedi/drivers/: cb_pcidas.c, das16m1.c, das1800.c, das800.c:
+         made chanlist cmdtests return 5
 
 2001-07-20 14:37  fmhess
 
 
 2001-07-20 11:24  fmhess
 
-       * comedi/drivers/mite.c (tags: r0_7_60): moved pci_enable_device to
-         get rid of statement with no effect' compiler warning
+       * comedi/drivers/mite.c: moved pci_enable_device to get rid of
+         statement with no effect' compiler warning
 
 2001-07-20 11:23  fmhess
 
-       * comedi/drivers/: cb_pcidas.c, das08.c (tags: r0_7_60): 2.4 kernel
-         pci fixes
+       * comedi/drivers/: cb_pcidas.c, das08.c: 2.4 kernel pci fixes
 
 2001-07-19 18:13  ds
 
 
 2001-07-18 04:55  ds
 
-       * comedi/drivers/ni_mio_common.c (tags: r0_7_60): Fixed high-bit
-         problem for AO on ao_unipolar=1 boards.
+       * comedi/drivers/ni_mio_common.c: Fixed high-bit problem for AO on
+         ao_unipolar=1 boards.
 
 2001-07-18 04:15  ds
 
 
 2001-07-14 21:40  fmhess
 
-       * comedi/drivers/8253.h (tags: r0_7_63, r0_7_62, r0_7_61, r0_7_60):
-         added rejection of count == 1 for mode 3, added i8254_read()
-         function
+       * comedi/drivers/8253.h: added rejection of count == 1 for mode 3,
+         added i8254_read() function
 
 2001-07-14 21:18  fmhess
 
 
 2001-07-14 17:42  ds
 
-       * comedi/kvmem.c (tags: r0_7_65, r0_7_64, r0_7_63, r0_7_62,
-         r0_7_61, r0_7_60): Add some headers
+       * comedi/kvmem.c: Add some headers
 
 2001-07-14 17:41  ds
 
 
 2001-07-12 21:55  ds
 
-       * include/linux/pci.h (tags: r0_7_60): Added pci_enable_device()
+       * include/linux/pci.h: Added pci_enable_device()
 
 2001-07-12 12:24  fmhess
 
 
 2001-07-10 18:12  ds
 
-       * comedi/drivers.c (tags: r0_7_60): Fix problem with DO subdevices
-         in insn_rw_emulate_bits()
+       * comedi/drivers.c: Fix problem with DO subdevices in
+         insn_rw_emulate_bits()
 
 2001-07-10 17:59  fmhess
 
 
 2001-07-10 17:47  ds
 
-       * TODO, scripts/config.dist (tags: r0_7_60): [no log message]
+       * TODO, scripts/config.dist: [no log message]
 
 2001-07-10 17:46  ds
 
-       * Documentation/comedi/pci.ids (tags: r0_7_61, r0_7_60): Needs more
-         help
+       * Documentation/comedi/pci.ids: Needs more help
 
 2001-07-10 17:45  ds
 
-       * etc/pcmcia/comedi.opts (tags: r0_7_61, r0_7_60): Empty file
-         needed here
+       * etc/pcmcia/comedi.opts: Empty file needed here
 
 2001-07-10 17:42  ds
 
 2001-07-10 17:32  ds
 
        * comedi/drivers/: ni_atmio.c, ni_mio_common.c, ni_mio_cs.c,
-         ni_pcimio.c (tags: r0_7_60), ni_stc.h (tags: r0_7_60): Fix memory
-         leak with caldac maxdata list.  Changed init of
-         AI_Personal_Register to 0xa420.  Could cause problems.
+         ni_pcimio.c, ni_stc.h: Fix memory leak with caldac maxdata list.
+         Changed init of AI_Personal_Register to 0xa420.  Could cause
+         problems.
 
 2001-07-10 17:28  ds
 
-       * comedi/drivers/daqboard2000.c (tags: r0_7_60): Fix buffer overrun
-         problem
+       * comedi/drivers/daqboard2000.c: Fix buffer overrun problem
 
 2001-07-10 17:27  ds
 
 
 2001-07-10 17:25  ds
 
-       * comedi/drivers/pcl724.c (tags: r0_7_60): Add a check_driver
-         override
+       * comedi/drivers/pcl724.c: Add a check_driver override
 
 2001-07-10 17:23  ds
 
-       * comedi/drivers/: cb_pcidas.c, cb_pcidda.c (tags: r0_7_60): Fix
-         cmdtest logic bug
+       * comedi/drivers/: cb_pcidas.c, cb_pcidda.c: Fix cmdtest logic bug
 
 2001-07-10 17:20  ds
 
-       * comedi/drivers/: adl_pci9118.c, adv_pci1710.c (utags: r0_7_60):
-         Split check_and_setup_channel_list() into separate functions
+       * comedi/drivers/: adl_pci9118.c, adv_pci1710.c: Split
+         check_and_setup_channel_list() into separate functions
 
 2001-07-10 17:19  ds
 
 
 2001-07-10 17:03  ds
 
-       * comedi/drivers/Makefile (tags: r0_7_60): Removed -old drivers
+       * comedi/drivers/Makefile: Removed -old drivers
 
 2001-07-10 17:02  ds
 
 
 2001-07-10 16:22  ds
 
-       * comedi/drivers/skel.c (tags: r0_7_60): Add len_chanlist
-         initialization
+       * comedi/drivers/skel.c: Add len_chanlist initialization
 
 2001-07-10 16:22  ds
 
 
 2001-07-05 12:01  fmhess
 
-       * comedi/comedi_fops.c (tags: r0_7_60): changed declaration of
-         bufinfo spinlock to static. This doesn't actually matter, since
-         it is only there to prevent interrupts, but makes the code look
-         less buggy.
+       * comedi/comedi_fops.c: changed declaration of bufinfo spinlock to
+         static. This doesn't actually matter, since it is only there to
+         prevent interrupts, but makes the code look less buggy.
 
 2001-07-05 11:55  fmhess
 
-       * comedi/trig.c (tags: r0_7_60): fix for trig emulation by cmd
+       * comedi/trig.c: fix for trig emulation by cmd
 
 2001-07-05 01:34  ds
 
 
 2001-07-02 19:57  ds
 
-       * Contributors (tags: r0_7_63, r0_7_62, r0_7_61, r0_7_60): Added
-         ivan
+       * Contributors: Added ivan
 
 2001-07-02 19:57  fmhess
 
 
 2001-06-28 19:33  ds
 
-       * scripts/: config.dist, config.in (tags: r0_7_60): Heh.  revert
-         change to config.in and apply to config.dist
+       * scripts/: config.dist, config.in: Heh.  revert change to
+         config.in and apply to config.dist
 
 2001-06-28 19:31  ds
 
 
 2001-06-28 18:22  ds
 
-       * include/linux/comedi.h (tags: r0_7_60): Added TRIG_OTHER
+       * include/linux/comedi.h: Added TRIG_OTHER
 
 2001-06-27 18:07  ds
 
-       * Makefile.modbuild (tags: r0_7_60): Change MOD_INSTALL_PATH to
-         INSTALL_MOD_PATH
+       * Makefile.modbuild: Change MOD_INSTALL_PATH to INSTALL_MOD_PATH
 
 2001-06-27 15:08  ds
 
 
 2001-06-27 13:27  fmhess
 
-       * comedi/drivers/: das16.c, das16m1.c, das800.c, poc.c (tags:
-         r0_7_60): minor updates
+       * comedi/drivers/: das16.c, das16m1.c, das800.c, poc.c: minor
+         updates
 
 2001-06-27 12:29  fmhess
 
 
 2001-06-26 12:27  fmhess
 
-       * comedi/drivers/pcm3730.c (tags: r0_7_60): fixed include that
-         prevented compile
+       * comedi/drivers/pcm3730.c: fixed include that prevented compile
 
 2001-06-26 12:26  fmhess
 
 
 2001-06-21 18:43  ds
 
-       * comedi/drivers/comedi_parport.c (tags: r0_7_60): Fix header
+       * comedi/drivers/comedi_parport.c: Fix header
 
 2001-06-21 18:43  ds
 
 2001-06-21 16:59  fmhess
 
        * comedi/drivers/: adl_pci9118.c, adv_pci1710.c, daqboard2000.c,
-         das08.c, das16.c, das16m1.c, ni_atmio.c, ni_atmio16d.c (tags:
-         r0_7_60), ni_mio_common.c, ni_mio_cs.c, ni_pcidio.c, ni_pcimio.c,
-         pcl711.c (tags: r0_7_60), pcl724.c, pcl812.c, pcl818.c, rti800.c
-         (tags: r0_7_60): changed a bunch of #include <blah.h> to #include
-         "blah.h" so that make dep catches the dependencies
+         das08.c, das16.c, das16m1.c, ni_atmio.c, ni_atmio16d.c,
+         ni_mio_common.c, ni_mio_cs.c, ni_pcidio.c, ni_pcimio.c, pcl711.c,
+         pcl724.c, pcl812.c, pcl818.c, rti800.c: changed a bunch of
+         #include <blah.h> to #include "blah.h" so that make dep catches
+         the dependencies
 
 2001-06-21 16:58  fmhess
 
 2001-06-21 14:23  fmhess
 
        * Documentation/Configure.help,
-         Documentation/comedi/Hardware_Driver.HOWTO (tags: r0_7_60),
+         Documentation/comedi/Hardware_Driver.HOWTO,
          Documentation/comedi/drivers.txt, Documentation/comedi/hardware,
          comedi/drivers/das16m1.c: added a little das16m1 documentation
 
 
 2001-06-21 13:42  ds
 
-       * etc/pcmcia/comedi (tags: r0_7_61, r0_7_60): Cleanups.
+       * etc/pcmcia/comedi: Cleanups.
 
 2001-06-21 13:42  ds
 
-       * README (tags: r0_7_60): Changed wording w.r.t. mailing list
+       * README: Changed wording w.r.t. mailing list
 
 2001-06-20 19:41  fmhess
 
 
 2001-06-08 18:38  ds
 
-       * Makefile (tags: r0_7_60): version bump
+       * Makefile: version bump
 
 2001-06-08 18:38  ds
 
-       * patches/rel_comedi (tags: r0_7_61, r0_7_60): Fix sed line for
-         version update
+       * patches/rel_comedi: Fix sed line for version update
 
 2001-06-08 18:37  ds
 
-       * comedi/proc.c (tags: r0_7_60): /proc/comedi dumps out the device
-         names recognized for each driver
+       * comedi/proc.c: /proc/comedi dumps out the device names recognized
+         for each driver
 
 2001-06-08 18:36  ds
 
-       * Documentation/comedi/counter-spec (tags: r0_7_74, r0_7_73,
-         r0_7_72, r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70,
-         r0_7_69, r0_7_67x, r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62,
-         r0_7_61, r0_7_60): More busy-talk about counters
+       * Documentation/comedi/counter-spec: More busy-talk about counters
 
 2001-06-08 18:35  ds
 
 
 2001-06-08 17:43  fmhess
 
-       * comedi/kcomedilib/: dio.c, ksyms.c (utags: r0_7_60): fixes for
-         kcomedilib with trigger support off.  comedi_dio_config() was
-         using trigger code instead of insn, I assumed there was no good
-         reason for this such as the insn code not working.
+       * comedi/kcomedilib/: dio.c, ksyms.c: fixes for kcomedilib with
+         trigger support off.  comedi_dio_config() was using trigger code
+         instead of insn, I assumed there was no good reason for this such
+         as the insn code not working.
 
 2001-06-07 20:06  ds
 
 
 2001-06-07 19:36  fmhess
 
-       * include/linux/version.h (tags: r0_7_60): attempting to fix 2.0
-         kernels that don't seem to define KERNEL_VERSION(a,b,c)
+       * include/linux/version.h: attempting to fix 2.0 kernels that don't
+         seem to define KERNEL_VERSION(a,b,c)
 
 2001-06-07 13:52  fmhess
 
          expire with next rtlinux version where it should no longer be
          required
 
+2001-05-27 20:29  tag r0_7_59
+
 2001-05-27 20:29  ds
 
-       * patches/patch-rtai (tags: r0_7_61, r0_7_60, r0_7_59): patch for
-         possible rtai changes
+       * patches/patch-rtai: patch for possible rtai changes
 
 2001-05-27 20:26  ds
 
 
 2001-05-27 20:25  ds
 
-       * TODO (tags: r0_7_59): [no log message]
+       * TODO: [no log message]
 
 2001-05-27 20:10  ds
 
-       * comedi/trig.c (tags: r0_7_59): Major simplification of trig[0]
-         path
+       * comedi/trig.c: Major simplification of trig[0] path
 
 2001-05-27 20:08  ds
 
-       * comedi/drivers/pcmad.c (tags: r0_7_60, r0_7_59): Update pcmad
-         driver for Comedi changes in the last year.
+       * comedi/drivers/pcmad.c: Update pcmad driver for Comedi changes in
+         the last year.
 
 2001-05-27 19:56  ds
 
-       * comedi/drivers/: Makefile (tags: r0_7_59), pcmad.c: Merged pcmad
-         driver
+       * comedi/drivers/: Makefile, pcmad.c: Merged pcmad driver
 
 2001-05-27 19:56  ds
 
-       * comedi/Config.in (tags: r0_7_59): Merged PCMAD driver
+       * comedi/Config.in: Merged PCMAD driver
 
 2001-05-27 19:54  ds
 
 
 2001-05-27 19:13  ds
 
-       * comedi/: comedi_fops.c (tags: r0_7_59), trig.c: Moved
-         trig-related code from comedi_fops.c to trig.c
+       * comedi/: comedi_fops.c, trig.c: Moved trig-related code from
+         comedi_fops.c to trig.c
 
 2001-05-27 19:12  ds
 
 
 2001-05-27 19:03  ds
 
-       * comedi/Config.in, comedi/Makefile (tags: r0_7_60, r0_7_59),
-         comedi/comedi_fops.c, comedi/drivers.c (tags: r0_7_59),
-         comedi/trig.c, comedi/kcomedilib/kcomedilib_main.c (tags:
-         r0_7_59), include/linux/comedidev.h (tags: r0_7_59): Moved trig
-         compatibility functions from drivers.c to trig.c.  Wrapped all
-         trig related code in CONFIG_COMEDI_TRIG.  Added config option for
-         CONFIG_COMEDI_TRIG.
+       * comedi/Config.in, comedi/Makefile, comedi/comedi_fops.c,
+         comedi/drivers.c, comedi/trig.c,
+         comedi/kcomedilib/kcomedilib_main.c, include/linux/comedidev.h:
+         Moved trig compatibility functions from drivers.c to trig.c.
+         Wrapped all trig related code in CONFIG_COMEDI_TRIG.  Added
+         config option for CONFIG_COMEDI_TRIG.
 
 2001-05-27 18:37  ds
 
-       * comedi/rt_pend_tq/Makefile (tags: r0_7_61, r0_7_60, r0_7_59): For
-         some reason, rt_pend_tq.o was compiled separately.  Fixed.
-         (Probably just created another bug...)
+       * comedi/rt_pend_tq/Makefile: For some reason, rt_pend_tq.o was
+         compiled separately.  Fixed.  (Probably just created another
+         bug...)
 
 2001-05-27 18:35  ds
 
-       * comedi/drivers/: das08.c, das6402.c (tags: r0_7_60), ni_pcidio.c,
-         pcl711.c, pcl812.c, pcl818.c (utags: r0_7_59): ifdef all the
-         remaining trig related code
+       * comedi/drivers/: das08.c, das6402.c, ni_pcidio.c, pcl711.c,
+         pcl812.c, pcl818.c: ifdef all the remaining trig related code
 
 2001-05-27 18:32  ds
 
 
 2001-05-27 17:13  ds
 
-       * comedi/drivers/: das6402.c, multiq3.c (tags: r0_7_60, r0_7_59),
-         ni_atmio16d.c (tags: r0_7_59): Cleanups, insn migration
+       * comedi/drivers/: das6402.c, multiq3.c, ni_atmio16d.c: Cleanups,
+         insn migration
 
 2001-05-27 17:13  ds
 
-       * comedi/drivers/check_driver (tags: r0_7_59): Fix a couple checks,
-         add comments
+       * comedi/drivers/check_driver: Fix a couple checks, add comments
 
 2001-05-27 16:23  ds
 
-       * patches/rel_comedi (tags: r0_7_59): fix for EXTRAVERSION
+       * patches/rel_comedi: fix for EXTRAVERSION
 
 2001-05-25 18:05  fmhess
 
-       * Documentation/comedi/hardware (tags: r0_7_59): added pci-das08
-         and pci-das1200 entries
+       * Documentation/comedi/hardware: added pci-das08 and pci-das1200
+         entries
 
 2001-05-25 17:59  fmhess
 
-       * Documentation/comedi/drivers.txt (tags: r0_7_59): updates
+       * Documentation/comedi/drivers.txt: updates
 
 2001-05-25 17:43  fmhess
 
-       * comedi/drivers/: cb_pcidas.c, rtd520.c (utags: r0_7_59): fix so
-         cards on bus 0 can be chosen through configuration options
+       * comedi/drivers/: cb_pcidas.c, rtd520.c: fix so cards on bus 0 can
+         be chosen through configuration options
 
 2001-05-25 17:39  fmhess
 
 
 2001-05-24 22:01  ds
 
-       * comedi/: kvmem.h (tags: r0_7_61, r0_7_60, r0_7_59),
-         drivers/mite.c (tags: r0_7_59), drivers/pcl818.c: Compilation
+       * comedi/: kvmem.h, drivers/mite.c, drivers/pcl818.c: Compilation
          fixes on powerpc
 
 2001-05-24 15:01  ds
 
-       * Documentation/comedi/redhat-notes (tags: r0_7_59): Added email
-         from Dan Christian about Red Hat
+       * Documentation/comedi/redhat-notes: Added email from Dan Christian
+         about Red Hat
 
 2001-05-23 21:41  ds
 
-       * comedi/: comedi_ksyms.c (tags: r0_7_60, r0_7_59), drivers.c:
-         removed di_unpack, do_pack.
+       * comedi/: comedi_ksyms.c, drivers.c: removed di_unpack, do_pack.
 
 2001-05-23 21:28  ds
 
-       * comedi/drivers/: 8255.c (tags: r0_7_60, r0_7_59), 8255.h (tags:
-         r0_7_61, r0_7_60, r0_7_59), adl_pci9118.c (tags: r0_7_59),
-         comedi_parport.c (tags: r0_7_59), comedi_rt_timer.c (tags:
-         r0_7_59), daqboard2000.c (tags: r0_7_59), das08.c, das16.c (tags:
-         r0_7_59), das1800.c (tags: r0_7_59), das6402.c, das800.c (tags:
-         r0_7_59), dt2814.c (tags: r0_7_60, r0_7_59), dt282x.c (tags:
-         r0_7_60, r0_7_59), fl512.c (tags: r0_7_60, r0_7_59), multiq3.c,
-         ni_atmio.c (tags: r0_7_59), ni_atmio16d.c, ni_mio_common.c (tags:
-         r0_7_59), ni_pcidio.c, ni_pcimio.c (tags: r0_7_59), pcl711.c,
-         pcl724.c (tags: r0_7_59), rti802.c (tags: r0_7_60, r0_7_59),
-         skel.c (tags: r0_7_59): Code cleanup, mainly things noticed by
-         check_driver.  A couple of the drivers were converted to insn.
+       * comedi/drivers/: 8255.c, 8255.h, adl_pci9118.c, comedi_parport.c,
+         comedi_rt_timer.c, daqboard2000.c, das08.c, das16.c, das1800.c,
+         das6402.c, das800.c, dt2814.c, dt282x.c, fl512.c, multiq3.c,
+         ni_atmio.c, ni_atmio16d.c, ni_mio_common.c, ni_pcidio.c,
+         ni_pcimio.c, pcl711.c, pcl724.c, rti802.c, skel.c: Code cleanup,
+         mainly things noticed by check_driver.  A couple of the drivers
+         were converted to insn.
 
 2001-05-23 20:47  ds
 
 
 2001-05-19 16:46  fmhess
 
-       * comedi/: rt.c (tags: r0_7_59), drivers/comedi_rt_timer.c: fixed
-         problem with comedi_switch_to_rt() and irq-less comedi_rt_timer
-         driver
+       * comedi/: rt.c, drivers/comedi_rt_timer.c: fixed problem with
+         comedi_switch_to_rt() and irq-less comedi_rt_timer driver
 
 2001-05-19 00:15  fmhess
 
        * comedi/comedi_ksyms.c, comedi/drivers/comedi_rt_timer.c,
-         include/linux/comedi_rt.h (tags: r0_7_60, r0_7_59): exported
-         rt_pend_call() so that comedi_rt_timer can be configured multiple
-         times
+         include/linux/comedi_rt.h: exported rt_pend_call() so that
+         comedi_rt_timer can be configured multiple times
 
 2001-05-18 15:25  timousley
 
 
 2001-05-14 08:10  ds
 
-       * comedi/drivers/: ni_mio_common.c, ni_pcimio.c, ni_stc.h (tags:
-         r0_7_59): 602x doesn't have unipolar AI.
+       * comedi/drivers/: ni_mio_common.c, ni_pcimio.c, ni_stc.h: 602x
+         doesn't have unipolar AI.
 
 2001-05-14 05:34  ds
 
 
 2001-05-13 20:12  fmhess
 
-       * Documentation/Configure.help (tags: r0_7_59): added
-         comedi_rt_timer description
+       * Documentation/Configure.help: added comedi_rt_timer description
 
 2001-05-13 19:41  fmhess
 
 
 2001-05-13 14:19  fmhess
 
-       * comedi/drivers/poc.c (tags: r0_7_59): fixed bug due to typo
+       * comedi/drivers/poc.c: fixed bug due to typo
 
 2001-05-11 20:00  fmhess
 
 
 2001-05-10 06:09  ds
 
-       * comedi/Config.in, comedi/drivers/Makefile, scripts/config.dist
-         (tags: r0_7_59): added rtd520 driver
+       * comedi/Config.in, comedi/drivers/Makefile, scripts/config.dist:
+         added rtd520 driver
 
 2001-05-10 06:08  ds
 
-       * Contributors (tags: r0_7_59): added
+       * Contributors: added
 
 2001-05-10 05:59  ds
 
 
 2001-05-10 05:57  ds
 
-       * comedi/drivers/: rtd520.c, rtd520.h (tags: r0_7_65, r0_7_64,
-         r0_7_63, r0_7_62, r0_7_61, r0_7_60, r0_7_59): Added driver from
-         Dan Christian <dac@ptolemy.arc.nasa.gov>
+       * comedi/drivers/: rtd520.c, rtd520.h: Added driver from Dan
+         Christian <dac@ptolemy.arc.nasa.gov>
 
 2001-05-09 21:36  fmhess
 
 
 2001-05-05 07:35  ds
 
-       * include/linux/: comedi.h, comedilib.h (tags: r0_7_64, r0_7_63,
-         r0_7_62, r0_7_61, r0_7_60) (utags: r0_7_59): Added comedi_map,
+       * include/linux/: comedi.h, comedilib.h: Added comedi_map,
          comedi_unmap, comedi_poll
 
 2001-05-05 07:35  ds
 
-       * comedi/kcomedilib/: kcomedilib_main.c, ksyms.c (tags: r0_7_59):
-         Added comedi_map, comedi_unmap
+       * comedi/kcomedilib/: kcomedilib_main.c, ksyms.c: Added comedi_map,
+         comedi_unmap
 
 2001-05-04 21:06  fmhess
 
 
 2001-05-04 19:32  fmhess
 
-       * comedi/comedi_fops.c, comedi/rt_pend_tq/rt_pend_tq.c (tags:
-         r0_7_60, r0_7_59), include/linux/comedi_rt.h: restored include of
-         comedidev.h from comedi_rt.h so that spin locks can be used
-         through including comedi_rt.h instead of having to go through
-         comedidev.h.  This include was originally removed due to circular
-         dependence between comedidev.h and comedi_rt.h but they're just
-         header files so it doesn't seem to matter.
+       * comedi/comedi_fops.c, comedi/rt_pend_tq/rt_pend_tq.c,
+         include/linux/comedi_rt.h: restored include of comedidev.h from
+         comedi_rt.h so that spin locks can be used through including
+         comedi_rt.h instead of having to go through comedidev.h.  This
+         include was originally removed due to circular dependence between
+         comedidev.h and comedi_rt.h but they're just header files so it
+         doesn't seem to matter.
 
 2001-05-04 18:19  fmhess
 
 
 2001-05-01 16:50  fmhess
 
-       * COPYING (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x,
-         r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62, r0_7_61, r0_7_60,
-         r0_7_59): named GPL file COPYING instead of LICENSE
+       * COPYING: named GPL file COPYING instead of LICENSE
 
 2001-05-01 16:47  fmhess
 
 
 2001-04-24 13:34  fmhess
 
-       * Makefile.modbuild (tags: r0_7_59): patch to make
-         comedi_rt_timer.c compile under rtlinux 3.0
+       * Makefile.modbuild: patch to make comedi_rt_timer.c compile under
+         rtlinux 3.0
 
 2001-04-23 16:23  ds
 
 
 2001-04-19 03:27  ds
 
-       * comedi/drivers/ni_mio_cs.c, etc/pcmcia/comedi.conf (tags:
-         r0_7_60) (utags: r0_7_59): Specs for new card
+       * comedi/drivers/ni_mio_cs.c, etc/pcmcia/comedi.conf: Specs for new
+         card
 
 2001-04-19 03:27  ds
 
 
 2001-04-19 03:21  ds
 
-       * INSTALL (tags: r0_7_59): change 2.3 to 2.4
+       * INSTALL: change 2.3 to 2.4
 
 2001-04-18 16:57  timousley
 
 
 2001-04-11 03:20  ds
 
-       * comedi/drivers/: comedi_rt_timer.c, ii_pci20kc.c (tags: r0_7_60,
-         r0_7_59), pcl812.c, quatech_daqp_cs.c (tags: r0_7_60, r0_7_59),
-         rti800.c (tags: r0_7_59), rti802.c: more migration to insn
+       * comedi/drivers/: comedi_rt_timer.c, ii_pci20kc.c, pcl812.c,
+         quatech_daqp_cs.c, rti800.c, rti802.c: more migration to insn
 
 2001-04-11 01:51  ds
 
-       * comedi/drivers/: adl_pci9118.c, adv_pci1710.c (tags: r0_7_59):
-         Deleted trig related code.
+       * comedi/drivers/: adl_pci9118.c, adv_pci1710.c: Deleted trig
+         related code.
 
 2001-04-11 01:50  ds
 
 
 2001-04-11 01:08  ds
 
-       * comedi/drivers/: Makefile, comedi_rt_timer.c, dt2811.c (tags:
-         r0_7_60, r0_7_59), dt2814.c, dt2815.c (tags: r0_7_60, r0_7_59),
-         dt2817.c (tags: r0_7_60, r0_7_59), dt282x.c, dt3000.c (tags:
-         r0_7_60, r0_7_59), ni_pcidio.c, pcl711.c, pcl725.c (tags:
-         r0_7_60, r0_7_59), pcl726.c (tags: r0_7_60, r0_7_59): Migrating
-         drivers from trig to insn
+       * comedi/drivers/: Makefile, comedi_rt_timer.c, dt2811.c, dt2814.c,
+         dt2815.c, dt2817.c, dt282x.c, dt3000.c, ni_pcidio.c, pcl711.c,
+         pcl725.c, pcl726.c: Migrating drivers from trig to insn
 
 2001-04-10 23:37  ds
 
 
 2001-04-10 12:45  timousley
 
-       * comedi/drivers/: mite.c, mite.h (tags: r0_7_60, r0_7_59),
-         ni_mio_common.c: Tim Ousley 4/10/01: MITE DMA now works correctly
-         for finite acquisitions smaller than the prealloc bufsz.
-         uncomment #define PCIDMA in ni_pcimio.c
+       * comedi/drivers/: mite.c, mite.h, ni_mio_common.c: Tim Ousley
+         4/10/01: MITE DMA now works correctly for finite acquisitions
+         smaller than the prealloc bufsz.  uncomment #define PCIDMA in
+         ni_pcimio.c
 
 2001-04-10 07:46  ds
 
-       * Makefile (tags: r0_7_59): version bump
+       * Makefile: version bump
+
+2001-04-09 05:29  tag r0_7_58
 
 2001-04-09 05:29  ds
 
-       * comedi/drivers/dt2811.c (tags: r0_7_58): Change from trig to insn
+       * comedi/drivers/dt2811.c: Change from trig to insn
 
 2001-04-09 02:19  ds
 
-       * comedi/drivers/dt2801.c (tags: r0_7_60, r0_7_59, r0_7_58): fixed
-         call of request_region() with uninitialized dev->iobase
+       * comedi/drivers/dt2801.c: fixed call of request_region() with
+         uninitialized dev->iobase
 
 2001-04-09 02:15  ds
 
-       * comedi/drivers/: Makefile (tags: r0_7_58), das1600-old.c (tags:
-         r0_7_59, r0_7_58), das1600.c: das1600 name change
+       * comedi/drivers/: Makefile, das1600-old.c, das1600.c: das1600 name
+         change
 
 2001-04-09 02:15  ds
 
-       * comedi/Config.in (tags: r0_7_58): Fix for das1600 name change
+       * comedi/Config.in: Fix for das1600 name change
 
 2001-04-09 01:46  ds
 
-       * comedi/drivers/ni_pcimio.c (tags: r0_7_58): added (commented)
-         definition of USE_PCIDMA
+       * comedi/drivers/ni_pcimio.c: added (commented) definition of
+         USE_PCIDMA
 
 2001-04-09 01:32  ds
 
-       * comedi/drivers/ni_mio_common.c (tags: r0_7_58): Tried to
-         integrate patch from Tim Ousley
+       * comedi/drivers/ni_mio_common.c: Tried to integrate patch from Tim
+         Ousley
 
 2001-04-09 01:03  ds
 
-       * comedi/Makefile (tags: r0_7_58): Fix linking of rt_pend_tq
+       * comedi/Makefile: Fix linking of rt_pend_tq
 
 2001-04-08 18:22  fmhess
 
-       * comedi/comedi_fops.c (tags: r0_7_58): added buffer overrun check
-         to bufinfo ioctl
+       * comedi/comedi_fops.c: added buffer overrun check to bufinfo ioctl
 
 2001-04-08 18:08  fmhess
 
-       * include/linux/spinlock.h (tags: r0_7_60, r0_7_59, r0_7_58):
-         converted some left over irq.h to spinlock.h
+       * include/linux/spinlock.h:  converted some left over irq.h to
+         spinlock.h
 
 2001-04-07 21:48  ds
 
-       * comedi/drivers/: adl_pci9118.c, adv_pci1710.c (utags: r0_7_58):
-         patch from Michal
+       * comedi/drivers/: adl_pci9118.c, adv_pci1710.c: patch from Michal
 
 2001-04-07 21:41  ds
 
 
 2001-04-06 19:24  fmhess
 
-       * comedi/drivers/: das1800.c, das800.c (utags: r0_7_58): added
-         explicit initialization of devpriv->spinlock
+       * comedi/drivers/: das1800.c, das800.c: added explicit
+         initialization of devpriv->spinlock
 
 2001-04-06 19:13  fmhess
 
-       * comedi/comedi_fops.c, include/linux/comedi.h (tags: r0_7_58):
-         added buffer info ioctl
+       * comedi/comedi_fops.c, include/linux/comedi.h: added buffer info
+         ioctl
 
 2001-04-06 18:57  ds
 
-       * scripts/config.dist (tags: r0_7_58): Enabled more drivers
+       * scripts/config.dist: Enabled more drivers
 
 2001-04-06 18:55  ds
 
-       * comedi/drivers/: mite.c, mite.h (utags: r0_7_58): Mite additions
-         from Tim Ousley
+       * comedi/drivers/: mite.c, mite.h: Mite additions from Tim Ousley
 
 2001-04-06 18:54  ds
 
 
 2001-04-03 19:45  fmhess
 
-       * include/linux/comedi_rt.h (tags: r0_7_58): made comedi_spinlock
-         functions do some type checking for standard linux and rtlinux
-         spinlocks
+       * include/linux/comedi_rt.h: made comedi_spinlock functions do some
+         type checking for standard linux and rtlinux spinlocks
 
 2001-04-03 19:37  fmhess
 
-       * include/linux/comedidev.h (tags: r0_7_58): removed two repeated
-         #include directives
+       * include/linux/comedidev.h: removed two repeated #include
+         directives
 
 2001-04-03 05:59  ds
 
-       * Documentation/Configure.help (tags: r0_7_58),
-         scripts/Configure.help: moved file, since that's where it's
-         expected.
+       * Documentation/Configure.help, scripts/Configure.help: moved file,
+         since that's where it's expected.
 
 2001-04-03 05:32  ds
 
 
 2001-04-03 05:30  ds
 
-       * Documentation/comedi/drivers.txt (tags: r0_7_58),
-         Documentation/comedi/hardware (tags: r0_7_58), comedi/Config.in,
-         comedi/drivers/Makefile, comedi/drivers/adl_pci9118.c,
-         comedi/drivers/amcc_s5933.h (tags: r0_7_61, r0_7_60, r0_7_59,
-         r0_7_58), scripts/Configure.help: Patch from Michal Dobes
+       * Documentation/comedi/drivers.txt, Documentation/comedi/hardware,
+         comedi/Config.in, comedi/drivers/Makefile,
+         comedi/drivers/adl_pci9118.c, comedi/drivers/amcc_s5933.h,
+         scripts/Configure.help: Patch from Michal Dobes
 
 2001-04-03 05:24  ds
 
-       * comedi/kcomedilib/kcomedilib_main.c (tags: r0_7_58): Fixed
-         insn_write bug.
+       * comedi/kcomedilib/kcomedilib_main.c: Fixed insn_write bug.
 
 2001-04-03 05:23  ds
 
-       * comedi/drivers/rti800.c (tags: r0_7_58): Fixed request_region()
-         being called with uninitialized value.
+       * comedi/drivers/rti800.c: Fixed request_region() being called with
+         uninitialized value.
 
 2001-04-03 05:23  ds
 
-       * comedi/drivers/das08.c (tags: r0_7_58): Fix bug in ao code
-         related to warning about return value != insn.n.  Also fixed ao
-         range to be +/- 5V.
+       * comedi/drivers/das08.c: Fix bug in ao code related to warning
+         about return value != insn.n.  Also fixed ao range to be +/- 5V.
 
 2001-04-03 05:21  ds
 
-       * comedi/drivers/check_driver (tags: r0_7_58): More checks of
-         dubious relevance
+       * comedi/drivers/check_driver: More checks of dubious relevance
 
 2001-04-03 05:20  ds
 
-       * comedi/rt_pend_tq/rt_pend_tq.c (tags: r0_7_58): fixed the
-         spinlock code for the way it is _supposed_ to be.  If it doesn't
-         work, it needs to be fixed elsewhere. (I think)
+       * comedi/rt_pend_tq/rt_pend_tq.c: fixed the spinlock code for the
+         way it is _supposed_ to be.  If it doesn't work, it needs to be
+         fixed elsewhere. (I think)
 
 2001-04-03 05:19  ds
 
-       * comedi/: Config.in, drivers/Makefile, drivers/comedi_rt_timer.c
-         (tags: r0_7_58): Fixes for comedi_rt_timer.  Still needs work;
-         doesn't even compile right now.
+       * comedi/: Config.in, drivers/Makefile, drivers/comedi_rt_timer.c:
+         Fixes for comedi_rt_timer.  Still needs work; doesn't even
+         compile right now.
 
 2001-03-30 15:31  fmhess
 
-       * comedi/drivers.c (tags: r0_7_58): fixed previous over-eager to
-         change things that dont need to change patch, real problem was
-         just one line
+       * comedi/drivers.c: fixed previous over-eager to change things that
+         dont need to change patch, real problem was just one line
 
 2001-03-30 15:18  fmhess
 
 
 2001-03-22 17:32  ds
 
-       * comedi/drivers/ni_mio_cs.c (tags: r0_7_58): removed iosize
+       * comedi/drivers/ni_mio_cs.c: removed iosize
 
 2001-03-22 17:31  ds
 
-       * comedi/drivers/: ni_mio_common.c, ni_stc.h (tags: r0_7_58):
-         cleaned up interrupt handling
+       * comedi/drivers/: ni_mio_common.c, ni_stc.h: cleaned up interrupt
+         handling
 
 2001-03-22 16:06  ds
 
 
 2001-03-22 15:55  ds
 
-       * comedi/: Makefile, rt.c (tags: r0_7_58), rt_pend_tq/rt_pend_tq.c:
-         Fix to make rt_pend_tq work correctly on RTAI.
+       * comedi/: Makefile, rt.c, rt_pend_tq/rt_pend_tq.c: Fix to make
+         rt_pend_tq work correctly on RTAI.
 
 2001-03-22 15:53  ds
 
-       * Makefile (tags: r0_7_58): Added install_dev target
+       * Makefile: Added install_dev target
 
 2001-03-22 15:48  ds
 
 
 2001-03-21 19:58  ds
 
-       * comedi/rt_pend_tq/Makefile (tags: r0_7_58): [no log message]
+       * comedi/rt_pend_tq/Makefile: [no log message]
 
 2001-03-21 19:09  ds
 
 
 2001-03-21 19:02  ds
 
-       * comedi/drivers/: adl_pci9118.c, comedi_parport.c (tags: r0_7_58),
-         das08.c, das1800.c, das800.c, dt2811.c, dt2814.c (tags: r0_7_58),
-         dt2817.c (tags: r0_7_58), dt282x.c (tags: r0_7_58), multiq3.c
-         (tags: r0_7_58), ni_atmio.c (tags: r0_7_58), ni_atmio16d.c (tags:
-         r0_7_58), pcl711.c (tags: r0_7_58), pcl724.c (tags: r0_7_58),
-         pcl725.c (tags: r0_7_58), pcl726.c (tags: r0_7_58), pcl812.c
-         (tags: r0_7_58), pcl818.c (tags: r0_7_58), poc.c (tags: r0_7_58),
-         rti800.c: removed dev->iosize
+       * comedi/drivers/: adl_pci9118.c, comedi_parport.c, das08.c,
+         das1800.c, das800.c, dt2811.c, dt2814.c, dt2817.c, dt282x.c,
+         multiq3.c, ni_atmio.c, ni_atmio16d.c, pcl711.c, pcl724.c,
+         pcl725.c, pcl726.c, pcl812.c, pcl818.c, poc.c, rti800.c: removed
+         dev->iosize
 
 2001-03-21 19:01  ds
 
-       * comedi/drivers/pcm3730.c (tags: r0_7_59, r0_7_58): changed driver
-         from trig to insn
+       * comedi/drivers/pcm3730.c: changed driver from trig to insn
 
 2001-03-21 18:59  ds
 
 
 2001-03-16 22:56  ds
 
-       * comedi/drivers/: adl_pci9118.c, cb_pcidas.c (tags: r0_7_58),
-         check_driver, das1800.c, das800.c: fix use of cmd->data
+       * comedi/drivers/: adl_pci9118.c, cb_pcidas.c, check_driver,
+         das1800.c, das800.c: fix use of cmd->data
 
 2001-03-16 22:45  ds
 
        * comedi/: Config.in, drivers/Makefile, drivers/das08-new.c,
-         drivers/das08.c, drivers/das16-new.c, drivers/das16.c (tags:
-         r0_7_58): changed driver names
+         drivers/das08.c, drivers/das16-new.c, drivers/das16.c: changed
+         driver names
 
 2001-03-16 22:44  ds
 
-       * comedi/drivers/: das08-old.c (tags: r0_7_59, r0_7_58), das08.c,
-         das08jr-old.c (tags: r0_7_59, r0_7_58), das08jr.c, das16-old.c
-         (tags: r0_7_59, r0_7_58), das16.c: Changed names on drivers
+       * comedi/drivers/: das08-old.c, das08.c, das08jr-old.c, das08jr.c,
+         das16-old.c, das16.c: Changed names on drivers
 
 2001-03-16 22:38  ds
 
        * comedi/comedi_fops.c, comedi/drivers/adl_pci9118.c,
          comedi/drivers/comedi_parport.c, comedi/drivers/das16-new.c,
-         comedi/drivers/das6402.c (tags: r0_7_58),
-         comedi/drivers/dt282x.c, comedi/drivers/mite.c,
-         comedi/drivers/ni_atmio16d.c, comedi/drivers/ni_mio_common.c,
-         comedi/drivers/pcl812.c, comedi/drivers/pcl818.c,
-         include/linux/comedidev.h: Removed dependency on
-         s->async->cur_trig in all the drivers.  Only dependency is in
-         comedi_fops.c, where it could be replaced by a local variable.
-         Also cleaned up the buffer code in many of the drivers.
+         comedi/drivers/das6402.c, comedi/drivers/dt282x.c,
+         comedi/drivers/mite.c, comedi/drivers/ni_atmio16d.c,
+         comedi/drivers/ni_mio_common.c, comedi/drivers/pcl812.c,
+         comedi/drivers/pcl818.c, include/linux/comedidev.h: Removed
+         dependency on s->async->cur_trig in all the drivers.  Only
+         dependency is in comedi_fops.c, where it could be replaced by a
+         local variable.  Also cleaned up the buffer code in many of the
+         drivers.
 
          Probably broke a lot of code that was techinically already
          broken.
 
 2001-03-16 22:34  ds
 
-       * TODO (tags: r0_7_58): random todo checkin
+       * TODO: random todo checkin
 
 2001-03-16 22:34  ds
 
 
 2001-03-16 14:32  ds
 
-       * comedi/drivers/8255.c (tags: r0_7_58): 8255 shouldn't use async
-         structure because it doesn't get allocated.
+       * comedi/drivers/8255.c: 8255 shouldn't use async structure because
+         it doesn't get allocated.
 
 2001-03-16 14:20  ds
 
 
 2001-03-13 04:31  ds
 
-       * patches/comedi-rtl-irq-tm.patch (tags: r0_7_58): TM's original
-         patch
+       * patches/comedi-rtl-irq-tm.patch: TM's original patch
 
 2001-03-13 04:28  ds
 
        * comedi/: Makefile, rt.c, rt_pend_tq/Makefile,
-         rt_pend_tq/rt_pend_tq.c, rt_pend_tq/rt_pend_tq.h (tags: r0_7_61,
-         r0_7_60, r0_7_59, r0_7_58): added rt_pend_tq support from Tomasz,
-         plus my mods
+         rt_pend_tq/rt_pend_tq.c, rt_pend_tq/rt_pend_tq.h: added
+         rt_pend_tq support from Tomasz, plus my mods
 
 2001-03-13 04:25  ds
 
 2001-03-04 05:55  ds
 
        * comedi/drivers/: adl_pci9118.c, check_driver, das16-new.c,
-         das16.c, das6402.c, dt2811.c, dt2814.c, dt2815.c (tags: r0_7_58),
-         dt282x.c, ni_atmio16d.c, ni_pcidio.c (tags: r0_7_58),
-         ni_pcimio.c, pcl711.c, pcl724.c, pcl725.c, pcl726.c, pcl812.c,
-         pcl818.c, rti800.c, rti802.c (tags: r0_7_58): fixes for bugs
-         suggested by check_driver
+         das16.c, das6402.c, dt2811.c, dt2814.c, dt2815.c, dt282x.c,
+         ni_atmio16d.c, ni_pcidio.c, ni_pcimio.c, pcl711.c, pcl724.c,
+         pcl725.c, pcl726.c, pcl812.c, pcl818.c, rti800.c, rti802.c: fixes
+         for bugs suggested by check_driver
 
 2001-03-04 03:45  ds
 
 2001-03-04 03:39  ds
 
        * comedi/drivers/: 8255.c, adl_pci9118.c, cb_pcidas.c,
-         daqboard2000.c (tags: r0_7_58), das08-new.c, das08.c,
-         das16-new.c, das1600.c, das1800.c, das800.c, dt2801.c, dt2811.c,
-         dt282x.c, dt3000.c (tags: r0_7_58), ii_pci20kc.c (tags: r0_7_58),
-         mpc8260cpm.c (tags: r0_7_60, r0_7_59, r0_7_58), ni_atmio.c,
-         ni_atmio16d.c, ni_mio_common.c, ni_mio_cs.c, ni_pcidio.c,
-         ni_pcimio.c, ni_stc.h, pcl711.c, pcl724.c, pcl726.c, pcl812.c,
-         pcl818.c, poc.c, quatech_daqp_cs.c (tags: r0_7_58), rti800.c,
-         skel.c (tags: r0_7_58): converted all drivers to use
+         daqboard2000.c, das08-new.c, das08.c, das16-new.c, das1600.c,
+         das1800.c, das800.c, dt2801.c, dt2811.c, dt282x.c, dt3000.c,
+         ii_pci20kc.c, mpc8260cpm.c, ni_atmio.c, ni_atmio16d.c,
+         ni_mio_common.c, ni_mio_cs.c, ni_pcidio.c, ni_pcimio.c, ni_stc.h,
+         pcl711.c, pcl724.c, pcl726.c, pcl812.c, pcl818.c, poc.c,
+         quatech_daqp_cs.c, rti800.c, skel.c: converted all drivers to use
          comedi_recognize() with name info pulled from board structures.
          removed dev->board in all drivers in favor of dev->board_ptr
          8255: removed way-old strcmp() cb_pcidas: fixed PCI code for 2.4
        * comedi/drivers/cb_pcidas.c: removed unnecessary recognize
          function that just recognized name of driver
 
+2001-03-02 12:55  tag r0_7_57
+
 2001-03-02 12:55  ds
 
-       * comedi/drivers/ni_mio_common.c (tags: r0_7_57): fix warning
+       * comedi/drivers/ni_mio_common.c: fix warning
 
 2001-03-02 12:21  ds
 
-       * Documentation/comedi/: drivers.txt, hardware (utags: r0_7_57):
-         changes for dt2811
+       * Documentation/comedi/: drivers.txt, hardware: changes for dt2811
 
 2001-03-02 01:43  ds
 
-       * comedi/comedi_fops.c (tags: r0_7_57): Fix previous vm changes for
-         2.2 (I think)
+       * comedi/comedi_fops.c: Fix previous vm changes for 2.2 (I think)
 
 2001-03-02 01:00  ds
 
-       * comedi/drivers/: ni_mio_common.c, ni_mio_cs.c (tags: r0_7_57):
-         added ao interrupt debugging now checks ao interrupt flag remove
-         incorrect comment in ni_mio_cs
+       * comedi/drivers/: ni_mio_common.c, ni_mio_cs.c: added ao interrupt
+         debugging now checks ao interrupt flag remove incorrect comment
+         in ni_mio_cs
 
 2001-03-02 00:31  ds
 
 
 2001-03-01 17:25  ds
 
-       * comedi/comedi_fops.c, comedi/drivers.c (tags: r0_7_57),
-         include/linux/comedi.h (tags: r0_7_57), include/linux/comedidev.h
-         (tags: r0_7_57): changes to bufconfig structure
+       * comedi/comedi_fops.c, comedi/drivers.c, include/linux/comedi.h,
+         include/linux/comedidev.h: changes to bufconfig structure
 
 2001-03-01 14:05  fmhess
 
-       * comedi/drivers/adl_pci9118.c (tags: r0_7_57): added recognize
-         replacement
+       * comedi/drivers/adl_pci9118.c: added recognize replacement
 
 2001-03-01 13:35  fmhess
 
-       * comedi/drivers/das1800.c (tags: r0_7_57): added recognize
-         replacement, integrated ai range table into das1800_board struct
+       * comedi/drivers/das1800.c: added recognize replacement, integrated
+         ai range table into das1800_board struct
 
 2001-03-01 13:33  fmhess
 
-       * comedi/drivers/skel.c (tags: r0_7_57): updated some comments
+       * comedi/drivers/skel.c: updated some comments
 
 2001-03-01 13:30  fmhess
 
 
 2001-03-01 00:03  ds
 
-       * Makefile.modbuild (tags: r0_7_58, r0_7_57): add install to pcmcia
-         subdir
+       * Makefile.modbuild: add install to pcmcia subdir
 
 2001-03-01 00:02  ds
 
-       * include/linux/fs.h (tags: r0_7_60, r0_7_59, r0_7_58, r0_7_57):
-         added compatibility for kill_fasync()
+       * include/linux/fs.h: added compatibility for kill_fasync()
 
 2001-02-28 23:59  ds
 
 
 2001-02-28 13:00  fmhess
 
-       * comedi/drivers.c, comedi/drivers/das800.c (tags: r0_7_57),
-         comedi/drivers/skel.c, include/linux/comedidev.h: changed
-         comedi_driver member num_boards to num_names as this is more
-         accurate
+       * comedi/drivers.c, comedi/drivers/das800.c, comedi/drivers/skel.c,
+         include/linux/comedidev.h: changed comedi_driver member
+         num_boards to num_names as this is more accurate
 
 2001-02-27 18:23  fmhess
 
 
 2001-02-26 17:03  ds
 
-       * Makefile (tags: r0_7_57): version bump
+       * Makefile: version bump
 
 2001-02-21 12:25  fmhess
 
 
 2001-02-19 17:50  ds
 
-       * comedi/: Config.in, drivers/Makefile, drivers/mpc8260cpm.c
-         (utags: r0_7_57): Added driver for DIO pins on MPC8260 CPM.  Not
-         working.
+       * comedi/: Config.in, drivers/Makefile, drivers/mpc8260cpm.c: Added
+         driver for DIO pins on MPC8260 CPM.  Not working.
 
 2001-02-19 17:47  ds
 
 
 2001-02-19 17:41  ds
 
-       * TODO, patches/rel_comedi (tags: r0_7_58) (utags: r0_7_57): [no
-         log message]
+       * TODO, patches/rel_comedi: [no log message]
 
 2001-02-19 17:39  ds
 
-       * comedi/drivers/: ni_mio_common.c, ni_stc.h (tags: r0_7_57): fixed
-         reversal of ni_writeb parameters in 8255 callback fixed TRIG_EXT
-         support added level/edge, hi/lo support for TRIG_EXT added
-         selection of trigger line for TRIG_EXT (maybe) fixed dual-channel
-         AO
+       * comedi/drivers/: ni_mio_common.c, ni_stc.h: fixed reversal of
+         ni_writeb parameters in 8255 callback fixed TRIG_EXT support
+         added level/edge, hi/lo support for TRIG_EXT added selection of
+         trigger line for TRIG_EXT (maybe) fixed dual-channel AO
 
 2001-02-19 16:18  ds
 
-       * comedi/drivers/fl512.c (tags: r0_7_58, r0_7_57): fixups for
-         driver
+       * comedi/drivers/fl512.c: fixups for driver
 
 2001-02-19 15:56  ds
 
 
 2001-02-12 22:51  fmhess
 
-       * comedi/comedi_fops.c, comedi/drivers.c, comedi/drivers/8255.c
-         (tags: r0_7_57), comedi/drivers/adl_pci9118.c,
-         comedi/drivers/comedi_parport.c (tags: r0_7_57),
-         comedi/drivers/das16-new.c (tags: r0_7_57),
-         comedi/drivers/das1800.c, comedi/drivers/das6402.c (tags:
-         r0_7_57), comedi/drivers/das800.c, comedi/drivers/dt2814.c (tags:
-         r0_7_57), comedi/drivers/dt282x.c (tags: r0_7_57),
-         comedi/drivers/mite.c (tags: r0_7_57),
-         comedi/drivers/ni_atmio16d.c (tags: r0_7_57),
-         comedi/drivers/ni_mio_common.c, comedi/drivers/pcl812.c (tags:
-         r0_7_57), comedi/drivers/pcl818.c (tags: r0_7_57),
-         comedi/drivers/skel.c, comedi/kcomedilib/kcomedilib_main.c (tags:
-         r0_7_57), comedi/realtime/vd_dds.c (tags: r0_7_58, r0_7_57),
+       * comedi/comedi_fops.c, comedi/drivers.c, comedi/drivers/8255.c,
+         comedi/drivers/adl_pci9118.c, comedi/drivers/comedi_parport.c,
+         comedi/drivers/das16-new.c, comedi/drivers/das1800.c,
+         comedi/drivers/das6402.c, comedi/drivers/das800.c,
+         comedi/drivers/dt2814.c, comedi/drivers/dt282x.c,
+         comedi/drivers/mite.c, comedi/drivers/ni_atmio16d.c,
+         comedi/drivers/ni_mio_common.c, comedi/drivers/pcl812.c,
+         comedi/drivers/pcl818.c, comedi/drivers/skel.c,
+         comedi/kcomedilib/kcomedilib_main.c, comedi/realtime/vd_dds.c,
          include/linux/comedidev.h: split asyncronous stuff off of
          comedi_subdevice_struct
 
 2001-02-12 21:52  fmhess
 
-       * comedi/drivers/daqboard2000_fpga.h (tags: r0_7_66, r0_7_65,
-         r0_7_64, r0_7_63, r0_7_62, r0_7_61, r0_7_60, r0_7_59, r0_7_58,
-         r0_7_57): fixed typo that prevented compile
+       * comedi/drivers/daqboard2000_fpga.h: fixed typo that prevented
+         compile
 
 2001-02-07 21:00  fmhess
 
 
 2001-02-05 13:09  ds
 
-       * comedi/: Config.in, drivers/Makefile, drivers/cb_pcidas.c (tags:
-         r0_7_57): new driver
+       * comedi/: Config.in, drivers/Makefile, drivers/cb_pcidas.c: new
+         driver
 
 2001-02-05 13:09  ds
 
-       * comedi/drivers/ii_pci20kc.c (tags: r0_7_57): change to
-         len_chanlist
+       * comedi/drivers/ii_pci20kc.c: change to len_chanlist
+
+2001-02-04 22:09  tag r0_7_56
 
 2001-02-04 22:09  ds
 
-       * Makefile (tags: r0_7_56): version bump
+       * Makefile: version bump
 
 2001-02-04 22:07  ds
 
-       * patches/rel_comedi (tags: r0_7_56): the release script.
+       * patches/rel_comedi: the release script.
 
 2001-02-04 22:06  ds
 
-       * patches/: cascade-test.c (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69,
-         r0_7_67x, r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62, r0_7_61,
-         r0_7_60, r0_7_59), patch-bufconfig, patch-pcmad, patch-scxi
-         (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71, branch-0_7-end,
-         branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x, r0_7_66, r0_7_65,
-         r0_7_64, r0_7_63, r0_7_62, r0_7_61, r0_7_60, r0_7_59), pcmad.c
-         (utags: r0_7_56, r0_7_57, r0_7_58): random cruft that needs to be
-         merged, or not
+       * patches/: cascade-test.c, patch-bufconfig, patch-pcmad,
+         patch-scxi, pcmad.c: random cruft that needs to be merged, or not
 
 2001-02-04 21:58  ds
 
-       * comedi/drivers/: ni_mio_common.c, ni_stc.h (utags: r0_7_56):
-         merged part of patch from Brad Keryan
+       * comedi/drivers/: ni_mio_common.c, ni_stc.h: merged part of patch
+         from Brad Keryan
 
 2001-02-04 21:39  ds
 
-       * comedi/drivers/ni_pcimio.c (tags: r0_7_57, r0_7_56): removed
-         irrelevant comment
+       * comedi/drivers/ni_pcimio.c: removed irrelevant comment
 
 2001-02-04 21:17  ds
 
-       * comedi/comedi_fops.c (tags: r0_7_56): interface change: INSN_WAIT
-         now takes nanoseconds instead of microseconds.
+       * comedi/comedi_fops.c: interface change: INSN_WAIT now takes
+         nanoseconds instead of microseconds.
 
 2001-02-04 21:09  ds
 
-       * comedi/comedi_ksyms.c (tags: r0_7_58, r0_7_57),
-         include/linux/comedi_rt.h (tags: r0_7_57),
-         include/linux/comedidev.h (utags: r0_7_56): cleanup, fixes for
-         real-time
+       * comedi/comedi_ksyms.c, include/linux/comedi_rt.h,
+         include/linux/comedidev.h: cleanup, fixes for real-time
 
 2001-02-04 21:07  ds
 
-       * comedi/kcomedilib/ksyms.c, include/linux/comedilib.h (utags:
-         r0_7_56, r0_7_57, r0_7_58): added command support
+       * comedi/kcomedilib/ksyms.c, include/linux/comedilib.h: added
+         command support
 
 2001-02-04 21:07  ds
 
-       * comedi/kcomedilib/kcomedilib_main.c (tags: r0_7_56): added
-         command support, removed SDF_RT code, bugfix for insn_bits
+       * comedi/kcomedilib/kcomedilib_main.c: added command support,
+         removed SDF_RT code, bugfix for insn_bits
 
 2001-02-04 21:06  ds
 
-       * comedi/rt.c (tags: r0_7_57, r0_7_56): fixes for RTAI, good for
-         rtai4 cvs, not checked for rtai-22
+       * comedi/rt.c: fixes for RTAI, good for rtai4 cvs, not checked for
+         rtai-22
 
 2001-02-04 21:05  ds
 
 
 2001-02-04 21:01  ds
 
-       * comedi/drivers/comedi_parport.c (tags: r0_7_56): added support
-         for using the interrupt pin
+       * comedi/drivers/comedi_parport.c: added support for using the
+         interrupt pin
 
 2001-02-03 16:29  ds
 
 
 2001-02-03 16:28  ds
 
-       * include/modbuild/.keepme (tags: r0_7_60, r0_7_59, r0_7_58,
-         r0_7_57, r0_7_56): I like .keepme better, anyway.
+       * include/modbuild/.keepme: I like .keepme better, anyway.
 
 2001-02-03 16:19  ds
 
 
 2001-02-01 18:33  fmhess
 
-       * include/: modbuild/.keepme, x/.keepme (tags: r0_7_67x, r0_7_66,
-         r0_7_65, r0_7_64, r0_7_63, r0_7_62, r0_7_61, r0_7_60, r0_7_59,
-         r0_7_58, r0_7_57, r0_7_56): removed redundant .keepme file since
-         dave added place_holder
+       * include/: modbuild/.keepme, x/.keepme: removed redundant .keepme
+         file since dave added place_holder
 
 2001-01-31 22:43  ds
 
 
 2001-01-30 15:19  fmhess
 
-       * comedi/comedi_fops.c, include/linux/comedi.h (tags: r0_7_56),
+       * comedi/comedi_fops.c, include/linux/comedi.h,
          include/linux/comedidev.h: fixed up counting of mmaps by using
          struct file->private_data to keep track of mmap count
 
 2001-01-29 18:43  ds
 
-       * comedi/drivers/ni_pcidio.c (tags: r0_7_57, r0_7_56): fixed NI
-         document numbers
+       * comedi/drivers/ni_pcidio.c: fixed NI document numbers
 
 2001-01-29 13:38  fmhess
 
 
 2001-01-29 01:37  fmhess
 
-       * comedi/drivers/das1800.c (tags: r0_7_56): fixed null dereference
-         problems caused by last change
+       * comedi/drivers/das1800.c: fixed null dereference problems caused
+         by last change
 
 2001-01-29 00:01  fmhess
 
 
 2001-01-28 23:51  fmhess
 
-       * comedi/drivers/das800.c (tags: r0_7_56): made sure all port io
-         happens after io ports have been requested (I messed this up with
-         last commit when I moved das800_probe() to an earlier place in
-         the das800_attach()
+       * comedi/drivers/das800.c: made sure all port io happens after io
+         ports have been requested (I messed this up with last commit when
+         I moved das800_probe() to an earlier place in the das800_attach()
 
 2001-01-28 20:10  fmhess
 
 
 2001-01-28 15:46  fmhess
 
-       * comedi/drivers.c (tags: r0_7_56), comedi/drivers/das800.c,
-         comedi/drivers/skel.c (tags: r0_7_56), include/linux/comedidev.h:
-         added replacement for recognize that can report valid board names
+       * comedi/drivers.c, comedi/drivers/das800.c, comedi/drivers/skel.c,
+         include/linux/comedidev.h: added replacement for recognize that
+         can report valid board names
 
 2001-01-28 14:20  fmhess
 
-       * comedi/drivers/dt2811.c (tags: r0_7_57, r0_7_56): fixed bug in
-         attach function
+       * comedi/drivers/dt2811.c: fixed bug in attach function
 
 2001-01-27 16:44  fmhess
 
 
 2001-01-27 15:23  fmhess
 
-       * Documentation/comedi/hardware (tags: r0_7_56): added das800 and
-         das1800 drivers
+       * Documentation/comedi/hardware: added das800 and das1800 drivers
 
 2001-01-27 15:13  fmhess
 
-       * Documentation/comedi/drivers.txt (tags: r0_7_56): updated notes
-         for das1800 and das800 drivers
+       * Documentation/comedi/drivers.txt: updated notes for das1800 and
+         das800 drivers
 
 2001-01-27 14:46  fmhess
 
 
 2001-01-23 19:44  ds
 
-       * Makefile.modbuild (tags: r0_7_56): [no log message]
+       * Makefile.modbuild: [no log message]
 
 2001-01-23 19:44  ds
 
-       * scripts/: Configure (tags: r0_7_61, r0_7_60, r0_7_59, r0_7_58),
-         config.dist (utags: r0_7_56, r0_7_57): changes to Configure for
+       * scripts/: Configure, config.dist: changes to Configure for
          modbuild, and update to config.dist
 
 2001-01-23 19:41  ds
 
-       * comedi/drivers/das08-new.c (tags: r0_7_57, r0_7_56): fix from
-         Luke Stras
+       * comedi/drivers/das08-new.c: fix from Luke Stras
 
 2001-01-23 19:07  ds
 
 
 2001-01-23 13:59  ds
 
-       * README (tags: r0_7_59, r0_7_58, r0_7_57, r0_7_56): added CVS info
+       * README: added CVS info
 
 2001-01-23 13:47  ds
 
-       * TODO (tags: r0_7_56): [no log message]
+       * TODO: [no log message]
 
 2001-01-23 13:34  ds
 
 
 2001-01-23 13:33  ds
 
-       * comedi/drivers/ni_mio_cs.c (tags: r0_7_56): fixes, debug
+       * comedi/drivers/ni_mio_cs.c: fixes, debug
 
 2001-01-23 13:33  ds
 
 
 2001-01-23 13:32  ds
 
-       * comedi/drivers/ni_atmio.c (tags: r0_7_57, r0_7_56): random
-         cleanup, attempt at ISAPNP
+       * comedi/drivers/ni_atmio.c: random cleanup, attempt at ISAPNP
 
 2001-01-23 13:31  ds
 
-       * comedi/drivers/dt282x.c (tags: r0_7_56): random cleanup
+       * comedi/drivers/dt282x.c: random cleanup
 
 2001-01-23 13:30  ds
 
 
        * comedi/drivers/dt282x.c: fixed adbits for dt2824
 
+2001-01-16 17:21  tag r0_7_55
+
 2001-01-16 17:21  ds
 
-       * comedi/kcomedilib/Makefile (tags: r0_7_61, r0_7_60, r0_7_59,
-         r0_7_58, r0_7_57, r0_7_56), comedi/kcomedilib/data.c (tags:
-         r0_7_60, r0_7_59, r0_7_58, r0_7_57, r0_7_56),
-         comedi/kcomedilib/dio.c (tags: r0_7_59, r0_7_58, r0_7_57,
-         r0_7_56), comedi/kcomedilib/kcomedilib_main.c,
+       * comedi/kcomedilib/Makefile, comedi/kcomedilib/data.c,
+         comedi/kcomedilib/dio.c, comedi/kcomedilib/kcomedilib_main.c,
          comedi/kcomedilib/ksyms.c, include/linux/comedi.h,
-         include/linux/comedilib.h (utags: r0_7_55): bunch of changes for
-         kcomedilib
+         include/linux/comedilib.h: bunch of changes for kcomedilib
 
 2001-01-16 17:20  ds
 
-       * TODO (tags: r0_7_55): [no log message]
+       * TODO: [no log message]
 
 2001-01-16 17:01  ds
 
-       * comedi/drivers/ni_atmio.c (tags: r0_7_55): driver was choking on
-         ni_atmio name
+       * comedi/drivers/ni_atmio.c: driver was choking on ni_atmio name
 
 2001-01-16 17:00  ds
 
-       * comedi/rt.c (tags: r0_7_55): fix error message
+       * comedi/rt.c: fix error message
 
 2001-01-16 14:26  ds
 
-       * comedi/Makefile (tags: r0_7_57, r0_7_56, r0_7_55): fix accidental
-         compilation of kcomedilib
+       * comedi/Makefile: fix accidental compilation of kcomedilib
 
 2001-01-16 14:24  ds
 
 
 2001-01-16 14:00  ds
 
-       * include/linux/comedidev.h (tags: r0_7_55): fix spinlock defs
+       * include/linux/comedidev.h: fix spinlock defs
 
 2001-01-16 13:59  ds
 
-       * include/linux/comedi_rt.h (tags: r0_7_55): fix RTAI spin_lock
-         defs
+       * include/linux/comedi_rt.h: fix RTAI spin_lock defs
 
 2001-01-16 13:59  ds
 
-       * comedi/drivers/das800.c (tags: r0_7_55): move header files
+       * comedi/drivers/das800.c: move header files
 
 2001-01-16 13:58  ds
 
-       * comedi/drivers/ni_mio_cs.c (tags: r0_7_55): compile fix
+       * comedi/drivers/ni_mio_cs.c: compile fix
 
 2001-01-16 12:15  ds
 
-       * comedi/drivers/ni_mio_common.c (tags: r0_7_55): bugfix on cmdtest
-         ao
+       * comedi/drivers/ni_mio_common.c: bugfix on cmdtest ao
 
 2001-01-16 12:15  ds
 
 
 2001-01-15 17:56  ds
 
-       * comedi/drivers/ni_pcidio.c (tags: r0_7_55): bugfix of the "oh,
-         crap" variety
+       * comedi/drivers/ni_pcidio.c: bugfix of the "oh, crap" variety
 
 2001-01-13 11:19  ds
 
-       * comedi/drivers.c (tags: r0_7_55): fix reference counting
+       * comedi/drivers.c: fix reference counting
 
 2001-01-12 17:44  ds
 
-       * scripts/Configure (tags: r0_7_55): clarity fix
+       * scripts/Configure: clarity fix
 
 2001-01-12 10:32  ds
 
 
        * comedi/: rtai.c, rtl.c, rtl_v1.c: remove old files
 
+2001-01-11 17:07  tag r0_7_54
+
 2001-01-11 17:07  ds
 
-       * comedi/drivers/ni_pcidio.c (tags: r0_7_54): readded linux/irq.h
-         for debugging
+       * comedi/drivers/ni_pcidio.c: readded linux/irq.h for debugging
 
 2001-01-11 17:03  ds
 
-       * comedi/drivers/poc.c (tags: r0_7_57, r0_7_56, r0_7_55, r0_7_54):
-         compile fixes
+       * comedi/drivers/poc.c: compile fixes
 
 2001-01-11 16:50  ds
 
-       * comedi/drivers/: adl_pci9118.c (tags: r0_7_56, r0_7_55),
-         das16-new.c (tags: r0_7_56, r0_7_55), das1800.c (tags: r0_7_55),
-         das800.c, dt2814.c (tags: r0_7_56, r0_7_55), dt282x.c (tags:
-         r0_7_55), ni_atmio16d.c (tags: r0_7_56, r0_7_55),
-         ni_mio_common.c, skel.c (tags: r0_7_55) (utags: r0_7_54): added
+       * comedi/drivers/: adl_pci9118.c, das16-new.c, das1800.c, das800.c,
+         dt2814.c, dt282x.c, ni_atmio16d.c, ni_mio_common.c, skel.c: added
          read_subdev and write_subdev where appropriate
 
 2001-01-11 16:48  ds
 
-       * comedi/comedi_rt.h (tags: r0_7_54): fix for rtlinux-3.0
+       * comedi/comedi_rt.h: fix for rtlinux-3.0
 
 2001-01-11 11:02  ds
 
-       * README (tags: r0_7_55, r0_7_54): mailing list changes
+       * README: mailing list changes
 
 2001-01-09 14:21  ds
 
-       * comedi/: Config.in (tags: r0_7_56, r0_7_55, r0_7_54),
-         drivers/Makefile (tags: r0_7_56, r0_7_55, r0_7_54),
-         drivers/poc.c: added poc driver
+       * comedi/: Config.in, drivers/Makefile, drivers/poc.c: added poc
+         driver
 
 2001-01-09 14:18  ds
 
-       * comedi/: rtai.c (tags: r0_7_54), rtl.c (tags: r0_7_54), rtl_v1.c
-         (tags: r0_7_54), drivers/dt282x.c, drivers/ni_pcidio.c: migrate
-         everybody from asm/irq.h to linux/irq.h
+       * comedi/: rtai.c, rtl.c, rtl_v1.c, drivers/dt282x.c,
+         drivers/ni_pcidio.c: migrate everybody from asm/irq.h to
+         linux/irq.h
 
 2001-01-09 14:18  ds
 
-       * scripts/dep.rtai (tags: r0_7_61, r0_7_60, r0_7_59, r0_7_58,
-         r0_7_57, r0_7_56, r0_7_55, r0_7_54): fix for rtai4 CVS
+       * scripts/dep.rtai: fix for rtai4 CVS
 
 2001-01-09 14:17  ds
 
-       * TODO (tags: r0_7_54): random checkin
+       * TODO: random checkin
 
 2001-01-09 13:06  ds
 
-       * include/linux/irq.h (tags: r0_7_67x, r0_7_66, r0_7_65, r0_7_64,
-         r0_7_63, r0_7_62, r0_7_61, r0_7_60, r0_7_59, r0_7_58, r0_7_57,
-         r0_7_56, r0_7_55, r0_7_54): who forgot to check in irq.h?
+       * include/linux/irq.h: who forgot to check in irq.h?
 
 2001-01-08 17:02  ds
 
-       * scripts/dep.linux (tags: r0_7_60, r0_7_59, r0_7_58, r0_7_57,
-         r0_7_56, r0_7_55, r0_7_54): fix versioning issues on UTS_VERSION
+       * scripts/dep.linux: fix versioning issues on UTS_VERSION
 
 2001-01-08 17:00  ds
 
-       * comedi/drivers/: ni_pcidio.c, ni_pcimio.c (tags: r0_7_55,
-         r0_7_54): select device based on bus,slot
+       * comedi/drivers/: ni_pcidio.c, ni_pcimio.c: select device based on
+         bus,slot
 
 2001-01-08 16:59  ds
 
 
 2001-01-08 16:59  ds
 
-       * comedi/drivers.c (tags: r0_7_54): clears dev structure on attach
+       * comedi/drivers.c: clears dev structure on attach
 
 2001-01-08 16:57  ds
 
-       * INSTALL (tags: r0_7_58, r0_7_57, r0_7_56, r0_7_55, r0_7_54):
-         bugfix
+       * INSTALL: bugfix
 
 2001-01-08 16:42  ds
 
-       * comedi/comedi_fops.c (tags: r0_7_55, r0_7_54): bugfix
+       * comedi/comedi_fops.c: bugfix
 
 2001-01-01 19:34  ds
 
-       * comedi/drivers/: das16-new.c, quatech_daqp_cs.c (tags: r0_7_57,
-         r0_7_56, r0_7_55, r0_7_54): compile fixes
+       * comedi/drivers/: das16-new.c, quatech_daqp_cs.c: compile fixes
 
 2001-01-01 19:34  ds
 
-       * scripts/config.dist (tags: r0_7_55, r0_7_54): update
+       * scripts/config.dist: update
 
 2001-01-01 16:30  ds
 
 
 2000-12-18 12:28  ds
 
-       * comedi/drivers/ni_atmio.c (tags: r0_7_54): fix warning
+       * comedi/drivers/ni_atmio.c: fix warning
 
 2000-12-18 11:41  ds
 
 
 2000-12-18 11:39  ds
 
-       * comedi/rt.c (tags: r0_7_54): fixed include
+       * comedi/rt.c: fixed include
 
 2000-12-18 11:38  ds
 
-       * comedi/drivers/8253.h (tags: r0_7_59, r0_7_58, r0_7_57, r0_7_56,
-         r0_7_55, r0_7_54): remove misleading comment and make _div
+       * comedi/drivers/8253.h: remove misleading comment and make _div
          function default
 
 2000-12-18 11:36  ds
 
 2000-12-15 13:27  ds
 
-       * comedi/drivers/das08.c (tags: r0_7_57, r0_7_56, r0_7_55,
-         r0_7_54): bugfix from Luke Stras
+       * comedi/drivers/das08.c: bugfix from Luke Stras
 
 2000-12-11 23:58  ds
 
 
 2000-12-07 20:09  ds
 
-       * Makefile.modbuild (tags: r0_7_55, r0_7_54): readded depmod on
-         install
+       * Makefile.modbuild: readded depmod on install
+
+2000-12-06 15:10  tag r0_7_53
 
 2000-12-06 15:10  ds
 
-       * comedi/: comedi_rt.h, rt.c (utags: r0_7_53): fixed 2.2.17/rtl-2.2
-         compile
+       * comedi/: comedi_rt.h, rt.c: fixed 2.2.17/rtl-2.2 compile
 
 2000-12-06 15:09  ds
 
-       * comedi/drivers/ni_pcimio.c (tags: r0_7_53): new device id
+       * comedi/drivers/ni_pcimio.c: new device id
 
 2000-12-06 15:09  ds
 
-       * comedi/drivers/ni_mio_common.c (tags: r0_7_53): remove warnings
+       * comedi/drivers/ni_mio_common.c: remove warnings
 
 2000-12-06 15:09  ds
 
-       * comedi/drivers/8253.h (tags: r0_7_53): new cascade math function
-         by Frank Mori Hess
+       * comedi/drivers/8253.h: new cascade math function by Frank Mori
+         Hess
 
 2000-12-05 23:06  ds
 
-       * comedi/drivers/ni_atmio.c (tags: r0_7_53): added recognize to use
-         older name atmio-E
+       * comedi/drivers/ni_atmio.c: added recognize to use older name
+         atmio-E
+
+2000-12-02 12:51  tag r0_7_52
 
 2000-12-02 12:51  ds
 
-       * comedi/: Config.in, drivers/Makefile (utags: r0_7_52, r0_7_53):
-         added das1800
+       * comedi/: Config.in, drivers/Makefile: added das1800
 
 2000-12-02 12:51  ds
 
-       * Documentation/comedi/drivers.txt (tags: r0_7_55, r0_7_54),
-         comedi/drivers/das1800.c, comedi/drivers/das800.c (utags:
-         r0_7_52, r0_7_53): update from Frank Mori Hess
+       * Documentation/comedi/drivers.txt, comedi/drivers/das1800.c,
+         comedi/drivers/das800.c: update from Frank Mori Hess
 
 2000-12-01 14:07  ds
 
-       * comedi/drivers/: ni_mio_common.c, ni_mio_cs.c (tags: r0_7_54,
-         r0_7_53) (utags: r0_7_52): error message cleanup
+       * comedi/drivers/: ni_mio_common.c, ni_mio_cs.c: error message
+         cleanup
 
 2000-12-01 14:06  ds
 
-       * comedi/comedi_fops.c (tags: r0_7_53, r0_7_52): fixed compile
-         errors on 2.2
+       * comedi/comedi_fops.c: fixed compile errors on 2.2
 
 2000-12-01 14:05  ds
 
-       * include/linux/mm.h (tags: r0_7_65, r0_7_64, r0_7_63, r0_7_62,
-         r0_7_61, r0_7_60, r0_7_59, r0_7_58, r0_7_57, r0_7_56, r0_7_55,
-         r0_7_54, r0_7_53, r0_7_52): added mm.h compat header
+       * include/linux/mm.h: added mm.h compat header
+
+2000-11-30 15:34  tag r0_7_51
 
 2000-11-30 15:34  ds
 
-       * comedi/drivers/ni_mio_common.c (tags: r0_7_51): random changes
-         for block mode
+       * comedi/drivers/ni_mio_common.c: random changes for block mode
 
 2000-11-30 15:30  ds
 
-       * comedi/drivers/amcc_s5933.h (tags: r0_7_57, r0_7_56, r0_7_55,
-         r0_7_54, r0_7_53, r0_7_52, r0_7_51): compile fix
+       * comedi/drivers/amcc_s5933.h: compile fix
 
 2000-11-30 15:29  ds
 
-       * comedi/comedi_fops.c (tags: r0_7_51): make select work when there
-         is no cmd running
+       * comedi/comedi_fops.c: make select work when there is no cmd
+         running
 
 2000-11-30 15:28  ds
 
 
 2000-11-29 20:25  ds
 
-       * Documentation/comedi/configuration (tags: r0_7_58, r0_7_57,
-         r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51): info on
-         configuration parameters
+       * Documentation/comedi/configuration: info on configuration
+         parameters
 
 2000-11-29 20:19  ds
 
-       * Contributors (tags: r0_7_58, r0_7_57, r0_7_56, r0_7_55, r0_7_54,
-         r0_7_53, r0_7_52, r0_7_51): added Contributors list
+       * Contributors: added Contributors list
 
 2000-11-29 20:19  ds
 
-       * comedi/drivers/: ni_mio_common.c, ni_stc.h (tags: r0_7_55,
-         r0_7_54, r0_7_53, r0_7_52, r0_7_51): #ifdef's added for trig
-         stuff blocking mode added ao insns added ao cmd added
+       * comedi/drivers/: ni_mio_common.c, ni_stc.h: #ifdef's added for
+         trig stuff blocking mode added ao insns added ao cmd added
 
 2000-11-29 20:16  ds
 
 
 2000-11-29 20:15  ds
 
-       * comedi/drivers/das800.c (tags: r0_7_51): compile fix
+       * comedi/drivers/das800.c: compile fix
 
 2000-11-29 20:15  ds
 
-       * comedi/drivers/Makefile (tags: r0_7_51): [no log message]
+       * comedi/drivers/Makefile: [no log message]
 
 2000-11-29 20:14  ds
 
 
 2000-11-29 19:31  ds
 
-       * comedi/Config.in (tags: r0_7_51): fixed adl9118 driver
+       * comedi/Config.in: fixed adl9118 driver
 
 2000-11-29 19:30  ds
 
-       * TODO (tags: r0_7_53, r0_7_52, r0_7_51): [no log message]
+       * TODO: [no log message]
 
 2000-11-29 19:29  ds
 
-       * comedi/drivers/ni_mio_cs.c (tags: r0_7_51): removed
-         release_region
+       * comedi/drivers/ni_mio_cs.c: removed release_region
 
 2000-11-29 19:28  ds
 
-       * comedi/drivers/dt282x.c (tags: r0_7_53, r0_7_52, r0_7_51): added
-         insn support
+       * comedi/drivers/dt282x.c: added insn support
 
 2000-11-29 19:27  ds
 
-       * comedi/drivers/dt2814.c (tags: r0_7_53, r0_7_52, r0_7_51): added
-         cmd support, insn support
+       * comedi/drivers/dt2814.c: added cmd support, insn support
 
 2000-11-29 19:26  ds
 
-       * comedi/drivers/skel.c (tags: r0_7_53, r0_7_52, r0_7_51): added
-         cmdtest
+       * comedi/drivers/skel.c: added cmdtest
 
 2000-11-29 18:18  ds
 
 
 2000-11-25 20:11  ds
 
-       * Documentation/comedi/drivers.txt (tags: r0_7_51): updates
+       * Documentation/comedi/drivers.txt: updates
 
 2000-11-25 19:53  ds
 
 
 2000-11-24 19:10  ds
 
-       * TODO, comedi/Makefile (tags: r0_7_54, r0_7_53, r0_7_52, r0_7_51),
-         comedi/comedi_fops.c, comedi/comedi_ksyms.c (tags: r0_7_55,
-         r0_7_54, r0_7_53, r0_7_52, r0_7_51), comedi/comedi_rt.h (tags:
-         r0_7_52, r0_7_51), comedi/rt.c (tags: r0_7_52, r0_7_51),
-         comedi/drivers/ni_mio_common.c, comedi/drivers/pcl818.c (tags:
-         r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51),
-         comedi/drivers/quatech_daqp_cs.c (tags: r0_7_53, r0_7_52,
-         r0_7_51), comedi/kcomedilib/kcomedilib_main.c (tags: r0_7_54,
-         r0_7_53, r0_7_52, r0_7_51), include/linux/comedidev.h (tags:
-         r0_7_54, r0_7_53, r0_7_52, r0_7_51): fixed poll, select, mod use
-         count for RT; many RT fixes/changes; more support for running
-         drivers RT from user space; pcl818: added pcm3718;
-         quatech_daqp_cs: fixed compilation; kcomedilib: added specific
-         EXPORT_SYMBOL()s
+       * TODO, comedi/Makefile, comedi/comedi_fops.c,
+         comedi/comedi_ksyms.c, comedi/comedi_rt.h, comedi/rt.c,
+         comedi/drivers/ni_mio_common.c, comedi/drivers/pcl818.c,
+         comedi/drivers/quatech_daqp_cs.c,
+         comedi/kcomedilib/kcomedilib_main.c, include/linux/comedidev.h:
+         fixed poll, select, mod use count for RT; many RT fixes/changes;
+         more support for running drivers RT from user space; pcl818:
+         added pcm3718; quatech_daqp_cs: fixed compilation; kcomedilib:
+         added specific EXPORT_SYMBOL()s
 
 2000-11-24 01:14  ds
 
 
 2000-11-21 13:46  ds
 
-       * Makefile (tags: r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51):
-         fixed mknod bug
+       * Makefile: fixed mknod bug
 
 2000-11-13 05:39  ds
 
-       * Makefile.modbuild (tags: r0_7_53, r0_7_52, r0_7_51): compile
-         fixes
+       * Makefile.modbuild: compile fixes
 
 2000-11-13 05:23  ds
 
-       * include/linux/version.h (tags: r0_7_59, r0_7_58, r0_7_57,
-         r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51): wedge for
-         version.h
+       * include/linux/version.h: wedge for version.h
 
 2000-11-13 05:22  ds
 
 
 2000-11-13 05:21  ds
 
-       * scripts/dep.rtlinux (tags: r0_7_61, r0_7_60, r0_7_59, r0_7_58,
-         r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51): =
-         vs. == bugfix
+       * scripts/dep.rtlinux: = vs. == bugfix
 
 2000-11-13 05:21  ds
 
 
 2000-11-13 05:17  ds
 
-       * comedi/drivers/ni_atmio.c (tags: r0_7_52, r0_7_51): rtlinux fix
+       * comedi/drivers/ni_atmio.c: rtlinux fix
 
 2000-11-07 16:59  ds
 
-       * scripts/check_kernel (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71,
-         branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x,
-         r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62, r0_7_61, r0_7_60,
-         r0_7_59, r0_7_58, r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53,
-         r0_7_52, r0_7_51): looked in /usr/include/linux
+       * scripts/check_kernel: looked in /usr/include/linux
 
 2000-11-07 16:50  ds
 
-       * comedi/: am9513.h, drivers/am9513.h (tags: r0_7_63, r0_7_62,
-         r0_7_61, r0_7_60, r0_7_59, r0_7_58, r0_7_57, r0_7_56, r0_7_55,
-         r0_7_54, r0_7_53, r0_7_52, r0_7_51): move header file
+       * comedi/: am9513.h, drivers/am9513.h: move header file
 
 2000-11-07 16:48  ds
 
-       * comedi/: comedi_fops.c, comedi_ksyms.c, drivers.c (tags: r0_7_53,
-         r0_7_52, r0_7_51), dummy.c (tags: r0_7_58, r0_7_57, r0_7_56,
-         r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51), proc.c (tags:
-         r0_7_59, r0_7_58, r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53,
-         r0_7_52, r0_7_51), range.c (tags: r0_7_60, r0_7_59, r0_7_58,
-         r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51),
-         rt.c, rtai.c (tags: r0_7_53, r0_7_52, r0_7_51), rtl.c (tags:
-         r0_7_53, r0_7_52, r0_7_51), rtl_v1.c (tags: r0_7_53, r0_7_52,
-         r0_7_51), drivers/8255.c (tags: r0_7_56, r0_7_55, r0_7_54,
-         r0_7_53, r0_7_52, r0_7_51), drivers/8255.h (tags: r0_7_58,
-         r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51),
-         drivers/adl_pci9118.c (tags: r0_7_53, r0_7_52, r0_7_51),
-         drivers/comedi_parport.c (tags: r0_7_55, r0_7_54, r0_7_53,
-         r0_7_52, r0_7_51), drivers/daqboard2000.c (tags: r0_7_57,
-         r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51),
-         drivers/das08-new.c (tags: r0_7_55, r0_7_54, r0_7_53, r0_7_52,
-         r0_7_51), drivers/das08.c (tags: r0_7_53, r0_7_52, r0_7_51),
-         drivers/das08jr.c (tags: r0_7_57, r0_7_56, r0_7_55, r0_7_54,
-         r0_7_53, r0_7_52, r0_7_51), drivers/das16-new.c (tags: r0_7_53,
-         r0_7_52, r0_7_51), drivers/das16.c (tags: r0_7_57, r0_7_56,
-         r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51), drivers/das1600.c
-         (tags: r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52,
-         r0_7_51), drivers/das6402.c (tags: r0_7_56, r0_7_55, r0_7_54,
-         r0_7_53, r0_7_52, r0_7_51), drivers/dt2801.c (tags: r0_7_57,
-         r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51),
-         drivers/dt2811.c (tags: r0_7_55, r0_7_54, r0_7_53, r0_7_52,
-         r0_7_51), drivers/dt2814.c, drivers/dt2815.c (tags: r0_7_57,
-         r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51),
-         drivers/dt2817.c (tags: r0_7_57, r0_7_56, r0_7_55, r0_7_54,
-         r0_7_53, r0_7_52, r0_7_51), drivers/dt282x.c, drivers/dt3000.c
-         (tags: r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52,
-         r0_7_51), drivers/ii_pci20kc.c (tags: r0_7_56, r0_7_55, r0_7_54,
-         r0_7_53, r0_7_52, r0_7_51), drivers/mite.c (tags: r0_7_56,
-         r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51), drivers/mite.h
-         (tags: r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52,
-         r0_7_51), drivers/multiq3.c (tags: r0_7_57, r0_7_56, r0_7_55,
-         r0_7_54, r0_7_53, r0_7_52, r0_7_51), drivers/ni_atmio.c,
-         drivers/ni_atmio16d.c (tags: r0_7_53, r0_7_52, r0_7_51),
-         drivers/ni_mio_cs.c, drivers/ni_pcidio.c (tags: r0_7_53, r0_7_52,
-         r0_7_51), drivers/ni_pcimio.c (tags: r0_7_52, r0_7_51),
-         drivers/pcl711.c (tags: r0_7_57, r0_7_56, r0_7_55, r0_7_54,
-         r0_7_53, r0_7_52, r0_7_51), drivers/pcl724.c (tags: r0_7_57,
-         r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51),
-         drivers/pcl725.c (tags: r0_7_57, r0_7_56, r0_7_55, r0_7_54,
-         r0_7_53, r0_7_52, r0_7_51), drivers/pcl726.c (tags: r0_7_57,
-         r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51),
-         drivers/pcl812.c (tags: r0_7_56, r0_7_55, r0_7_54, r0_7_53,
-         r0_7_52, r0_7_51), drivers/pcl818.c, drivers/quatech_daqp_cs.c,
-         drivers/rti800.c (tags: r0_7_57, r0_7_56, r0_7_55, r0_7_54,
-         r0_7_53, r0_7_52, r0_7_51), drivers/rti802.c (tags: r0_7_57,
-         r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51),
-         drivers/skel.c, kcomedilib/data.c (tags: r0_7_54, r0_7_53,
-         r0_7_52, r0_7_51), kcomedilib/dio.c (tags: r0_7_54, r0_7_53,
-         r0_7_52, r0_7_51), kcomedilib/kcomedilib_main.c,
-         realtime/vd_dds.c (tags: r0_7_56, r0_7_55, r0_7_54, r0_7_53,
-         r0_7_52, r0_7_51), realtime/vd_timer.c (tags: r0_7_58, r0_7_57,
-         r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51): fix sed
-         script mistake
+       * comedi/: comedi_fops.c, comedi_ksyms.c, drivers.c, dummy.c,
+         proc.c, range.c, rt.c, rtai.c, rtl.c, rtl_v1.c, drivers/8255.c,
+         drivers/8255.h, drivers/adl_pci9118.c, drivers/comedi_parport.c,
+         drivers/daqboard2000.c, drivers/das08-new.c, drivers/das08.c,
+         drivers/das08jr.c, drivers/das16-new.c, drivers/das16.c,
+         drivers/das1600.c, drivers/das6402.c, drivers/dt2801.c,
+         drivers/dt2811.c, drivers/dt2814.c, drivers/dt2815.c,
+         drivers/dt2817.c, drivers/dt282x.c, drivers/dt3000.c,
+         drivers/ii_pci20kc.c, drivers/mite.c, drivers/mite.h,
+         drivers/multiq3.c, drivers/ni_atmio.c, drivers/ni_atmio16d.c,
+         drivers/ni_mio_cs.c, drivers/ni_pcidio.c, drivers/ni_pcimio.c,
+         drivers/pcl711.c, drivers/pcl724.c, drivers/pcl725.c,
+         drivers/pcl726.c, drivers/pcl812.c, drivers/pcl818.c,
+         drivers/quatech_daqp_cs.c, drivers/rti800.c, drivers/rti802.c,
+         drivers/skel.c, kcomedilib/data.c, kcomedilib/dio.c,
+         kcomedilib/kcomedilib_main.c, realtime/vd_dds.c,
+         realtime/vd_timer.c: fix sed script mistake
 
 2000-11-07 16:39  ds
 
 
 2000-11-07 15:47  ds
 
-       * include/: comedi.h, linux/comedi.h (tags: r0_7_54, r0_7_53,
-         r0_7_52, r0_7_51): moved comedi.h to linux/
+       * include/: comedi.h, linux/comedi.h: moved comedi.h to linux/
 
 2000-11-07 15:46  ds
 
 
 2000-11-07 15:23  ds
 
-       * Documentation/comedi/counter-spec (tags: r0_7_59, r0_7_58,
-         r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51):
-         added ideas for counter configuration
+       * Documentation/comedi/counter-spec: added ideas for counter
+         configuration
 
 2000-11-07 15:22  ds
 
-       * include/linux/: module.h (tags: r0_7_60), pci.h (utags: r0_7_51,
-         r0_7_52, r0_7_53, r0_7_54, r0_7_55, r0_7_56, r0_7_57, r0_7_58,
-         r0_7_59): new files
+       * include/linux/: module.h, pci.h: new files
 
 2000-11-07 15:21  ds
 
 
 2000-11-07 15:20  ds
 
-       * comedi/kern_compat.h (tags: r0_7_60, r0_7_59, r0_7_58, r0_7_57,
-         r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51): move parts
-         to include/linux
+       * comedi/kern_compat.h: move parts to include/linux
 
 2000-11-07 15:20  ds
 
 
 2000-10-15 18:33  ds
 
-       * include/: asm/uaccess.h (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71), linux/wait.h (utags: branch-0_7-end, branch-0_7-start,
-         r0_7_51, r0_7_52, r0_7_53, r0_7_54, r0_7_55, r0_7_56, r0_7_57,
-         r0_7_58, r0_7_59, r0_7_60, r0_7_61, r0_7_62, r0_7_63, r0_7_64,
-         r0_7_65, r0_7_66, r0_7_67x, r0_7_69, r0_7_70): new
+       * include/: asm/uaccess.h, linux/wait.h: new
 
 2000-10-15 17:53  ds
 
 
 2000-10-13 20:55  ds
 
-       * TODO, scripts/preconfigure (tags: r0_7_61, r0_7_60, r0_7_59,
-         r0_7_58, r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52,
-         r0_7_51): removed pcmcia dep (conflicts on 2.4.0)
+       * TODO, scripts/preconfigure: removed pcmcia dep (conflicts on
+         2.4.0)
 
 2000-10-13 20:36  ds
 
        * Makefile.modbuild, comedi/Config.in, comedi/drivers/Makefile,
-         comedi/drivers/quatech_daqp_cs.c, etc/pcmcia/comedi.conf (tags:
-         r0_7_58, r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52,
-         r0_7_51), scripts/dep.pcmcia (tags: r0_7_61, r0_7_60, r0_7_59,
-         r0_7_58, r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52,
-         r0_7_51), scripts/dep.rtlinux, scripts/preconfigure: patch from
-         Brent Baccala
+         comedi/drivers/quatech_daqp_cs.c, etc/pcmcia/comedi.conf,
+         scripts/dep.pcmcia, scripts/dep.rtlinux, scripts/preconfigure:
+         patch from Brent Baccala
+
+2000-10-13 05:29  tag r0_7_50
 
 2000-10-13 05:29  ds
 
-       * comedi/: comedi_fops.c, drivers.c (utags: r0_7_50): moved BUG
-         check to drivers.c compile warning fix
+       * comedi/: comedi_fops.c, drivers.c: moved BUG check to drivers.c
+         compile warning fix
 
 2000-10-13 05:28  ds
 
-       * TODO (tags: r0_7_50): random TODO checkin
+       * TODO: random TODO checkin
 
 2000-10-13 05:28  ds
 
-       * Makefile (tags: r0_7_50): version bump
+       * Makefile: version bump
 
 2000-10-13 05:27  ds
 
-       * comedi/drivers/comedi_parport.c (tags: r0_7_50): updates for insn
+       * comedi/drivers/comedi_parport.c: updates for insn
 
 2000-10-13 05:27  ds
 
-       * comedi/: kvmem.c (tags: r0_7_59), kvmem.h (utags: r0_7_50,
-         r0_7_51, r0_7_52, r0_7_53, r0_7_54, r0_7_55, r0_7_56, r0_7_57,
-         r0_7_58): fixes for kernel >=2.4.0-test7
+       * comedi/: kvmem.c, kvmem.h: fixes for kernel >=2.4.0-test7
 
 2000-10-13 04:51  ds
 
-       * comedi/drivers/ii_pci20kc.c (tags: r0_7_50): modified for insn
+       * comedi/drivers/ii_pci20kc.c: modified for insn
 
 2000-10-13 04:15  ds
 
 
 2000-10-12 16:07  ds
 
-       * Makefile.modbuild, scripts/dep.rtlinux (utags: r0_7_50): fix
-         rtlinux include file problems
+       * Makefile.modbuild, scripts/dep.rtlinux: fix rtlinux include file
+         problems
 
 2000-10-12 16:00  ds
 
-       * Documentation/comedi/drivers.txt, Documentation/comedi/hardware
-         (tags: r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51),
+       * Documentation/comedi/drivers.txt, Documentation/comedi/hardware,
          comedi/Config.in, comedi/drivers/adl_pci9118.c,
-         comedi/drivers/amcc_s5933.h, scripts/Configure.help (tags:
-         r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51)
-         (utags: r0_7_50): new driver from Michal Dobes, plus fixes to
-         docs
+         comedi/drivers/amcc_s5933.h, scripts/Configure.help: new driver
+         from Michal Dobes, plus fixes to docs
+
+2000-10-11 16:48  tag r0_7_49
 
 2000-10-11 16:48  ds
 
-       * Documentation/comedi/hacks (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69,
-         r0_7_67x, r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62, r0_7_61,
-         r0_7_60, r0_7_59, r0_7_58, r0_7_57, r0_7_56, r0_7_55, r0_7_54,
-         r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49): added documentation
-         of hacks
+       * Documentation/comedi/hacks: added documentation of hacks
 
 2000-10-10 21:13  ds
 
 
 2000-10-10 21:09  ds
 
-       * INSTALL (tags: r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49):
-         updates
+       * INSTALL: updates
 
 2000-10-10 21:09  ds
 
-       * TODO (tags: r0_7_49): [no log message]
+       * TODO: [no log message]
 
 2000-10-10 21:08  ds
 
-       * comedi/kcomedilib/: data.c, dio.c, kcomedilib_main.c (utags:
-         r0_7_49, r0_7_50): insn support
+       * comedi/kcomedilib/: data.c, dio.c, kcomedilib_main.c: insn
+         support
 
 2000-10-10 21:07  ds
 
-       * comedi/drivers.c (tags: r0_7_49): insn_read/write emulation based
-         on insn_bits
+       * comedi/drivers.c: insn_read/write emulation based on insn_bits
 
 2000-10-10 21:00  ds
 
-       * comedi/comedi_module.h (tags: r0_7_50, r0_7_49): added read/write
-         wait_queues and read/write subdevices
+       * comedi/comedi_module.h: added read/write wait_queues and
+         read/write subdevices
 
 2000-10-10 20:59  ds
 
-       * comedi/comedi_fops.c (tags: r0_7_49): changed insn handling added
-         poll fop changed read/write from depending on f_pos to paticular
+       * comedi/comedi_fops.c: changed insn handling added poll fop
+         changed read/write from depending on f_pos to paticular
          read/write subdev
 
 2000-10-10 20:54  ds
 
-       * comedi/Config.in (tags: r0_7_49): added fpga conf option for
-         dasboard2000
+       * comedi/Config.in: added fpga conf option for dasboard2000
 
 2000-10-10 20:50  ds
 
-       * comedi/drivers/: ni_mio_common.c, ni_pcimio.c, ni_stc.h (utags:
-         r0_7_49, r0_7_50): bug fixes re failure on comedi_test
+       * comedi/drivers/: ni_mio_common.c, ni_pcimio.c, ni_stc.h: bug
+         fixes re failure on comedi_test
 
 2000-10-10 20:47  ds
 
-       * comedi/drivers/daqboard2000.c (tags: r0_7_50, r0_7_49): code
-         cleanup modularized fpga code
+       * comedi/drivers/daqboard2000.c: code cleanup modularized fpga code
 
 2000-10-10 20:40  ds
 
-       * include/comedi.h (tags: r0_7_50, r0_7_49): added comedi_do_insn()
+       * include/comedi.h: added comedi_do_insn()
 
 2000-09-17 11:50  ds
 
-       * comedi/drivers/rti800.c (tags: r0_7_50, r0_7_49): fix 815
-         recognition
+       * comedi/drivers/rti800.c: fix 815 recognition
 
 2000-09-09 18:00  ds
 
 
 2000-09-07 20:40  ds
 
-       * comedi/drivers/: ni_atmio.c (tags: r0_7_50, r0_7_49),
-         ni_mio_common.c, ni_stc.h: enable GPCTs on all boards
+       * comedi/drivers/: ni_atmio.c, ni_mio_common.c, ni_stc.h: enable
+         GPCTs on all boards
 
 2000-09-07 20:22  ds
 
 
 2000-09-07 13:34  ds
 
-       * Makefile (tags: r0_7_49): The reappearance of make dev
+       * Makefile: The reappearance of make dev
+
+2000-09-05 20:53  tag r0_7_48
 
 2000-09-05 20:53  ds
 
-       * comedi/drivers/ni_mio_cs.c (tags: r0_7_50, r0_7_49, r0_7_48):
-         remove bogus undef
+       * comedi/drivers/ni_mio_cs.c: remove bogus undef
 
 2000-09-05 20:53  ds
 
-       * comedi/drivers.c (tags: r0_7_48): fix for insn->mode0 conversion
+       * comedi/drivers.c: fix for insn->mode0 conversion
 
 2000-09-05 14:33  ds
 
-       * comedi/drivers/: ni_atmio.c (tags: r0_7_48), ni_mio_cs.c,
-         ni_pcimio.c (tags: r0_7_48), ni_stc.h (tags: r0_7_48): moved
-         ni_private common stuff to .h
+       * comedi/drivers/: ni_atmio.c, ni_mio_cs.c, ni_pcimio.c, ni_stc.h:
+         moved ni_private common stuff to .h
 
 2000-09-05 14:16  ds
 
 
 2000-09-05 13:45  ds
 
-       * etc/pcmcia/comedi.conf (tags: r0_7_50, r0_7_49, r0_7_48): Added
-         PCMCIA device id
+       * etc/pcmcia/comedi.conf: Added PCMCIA device id
 
 2000-09-04 22:12  ds
 
-       * comedi/drivers/ni_mio_common.c (tags: r0_7_48): hack bugfix for
-         commands
+       * comedi/drivers/ni_mio_common.c: hack bugfix for commands
 
 2000-09-04 22:11  ds
 
-       * Makefile.modbuild (tags: r0_7_49, r0_7_48): remove extra -DMODULE
+       * Makefile.modbuild: remove extra -DMODULE
 
 2000-09-04 19:09  ds
 
 
 2000-09-02 21:53  ds
 
-       * comedi/drivers/mite.h (tags: r0_7_50, r0_7_49, r0_7_48): added
-         mite_list_devices()
+       * comedi/drivers/mite.h: added mite_list_devices()
 
 2000-09-02 21:51  ds
 
-       * comedi/drivers/: ni_pcidio.c (tags: r0_7_50, r0_7_49, r0_7_48),
-         ni_pcimio.c: additional debugging for unknown boards
+       * comedi/drivers/: ni_pcidio.c, ni_pcimio.c: additional debugging
+         for unknown boards
 
 2000-09-02 21:49  ds
 
-       * include/comedi.h (tags: r0_7_48): add instruction bits support,
-         make comedi_insn_struct forward compatible
+       * include/comedi.h: add instruction bits support, make
+         comedi_insn_struct forward compatible
 
 2000-09-02 21:49  ds
 
-       * comedi/: comedi_fops.c (tags: r0_7_48), comedi_module.h (tags:
-         r0_7_48), drivers.c, drivers/8255.c (tags: r0_7_50, r0_7_49,
-         r0_7_48), drivers/dt282x.c (tags: r0_7_50, r0_7_49, r0_7_48),
-         drivers/ni_mio_common.c: instruction bits support
+       * comedi/: comedi_fops.c, comedi_module.h, drivers.c,
+         drivers/8255.c, drivers/dt282x.c, drivers/ni_mio_common.c:
+         instruction bits support
 
 2000-09-02 21:44  ds
 
-       * comedi/drivers/: das16.c, dt3000.c (utags: r0_7_48, r0_7_49,
-         r0_7_50): warning cleanups
+       * comedi/drivers/: das16.c, dt3000.c: warning cleanups
 
 2000-09-02 21:42  ds
 
-       * comedi/range.c (tags: r0_7_50, r0_7_49, r0_7_48): fix unknown
-         range
+       * comedi/range.c: fix unknown range
 
 2000-09-02 21:41  ds
 
-       * Documentation/comedi/command (tags: r0_7_74, r0_7_73, r0_7_72,
-         r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70, r0_7_69,
-         r0_7_67x, r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62, r0_7_61,
-         r0_7_60, r0_7_59, r0_7_58, r0_7_57, r0_7_56, r0_7_55, r0_7_54,
-         r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49, r0_7_48): doc update
+       * Documentation/comedi/command: doc update
 
 2000-09-02 21:41  ds
 
-       * TODO (tags: r0_7_48): todo update
+       * TODO: todo update
 
 2000-08-31 11:29  ds
 
 
 2000-08-18 20:59  ds
 
-       * comedi/drivers/: mite.c (tags: r0_7_50, r0_7_49, r0_7_48),
-         ni_mio_common.c, ni_pcimio.c, ni_stc.h: Additonal info on PCI
-         boards, readded warning for unknown boards
+       * comedi/drivers/: mite.c, ni_mio_common.c, ni_pcimio.c, ni_stc.h:
+         Additonal info on PCI boards, readded warning for unknown boards
 
 2000-08-09 16:45  ds
 
 
 2000-08-09 16:44  ds
 
-       * comedi/Config.in (tags: r0_7_48): makefile related fix
+       * comedi/Config.in: makefile related fix
 
 2000-08-09 16:42  ds
 
-       * comedi/: comedi_fops.c, proc.c (tags: r0_7_50, r0_7_49, r0_7_48),
-         comedi_module.h: changes due to modbuild
+       * comedi/: comedi_fops.c, proc.c, comedi_module.h: changes due to
+         modbuild
 
 2000-08-09 16:28  ds
 
 
 2000-08-09 16:27  ds
 
-       * scripts/: Configure (tags: r0_7_54, r0_7_53, r0_7_52, r0_7_51),
-         dep.rtai (tags: r0_7_53, r0_7_52, r0_7_51), preconfigure (utags:
-         r0_7_48, r0_7_49, r0_7_50): dep fixes
+       * scripts/: Configure, dep.rtai, preconfigure: dep fixes
 
 2000-08-08 02:44  ds
 
 
 2000-07-27 20:38  ds
 
-       * comedi/rtl.c (tags: r0_7_50, r0_7_49, r0_7_48): bugfix
+       * comedi/rtl.c: bugfix
 
 2000-07-26 19:12  ds
 
-       * include/linux/config.h (tags: r0_7_59, r0_7_58, r0_7_57, r0_7_56,
-         r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49,
-         r0_7_48): merge modbuild-0.0.2
+       * include/linux/config.h: merge modbuild-0.0.2
 
 2000-07-26 19:11  ds
 
-       * comedi/rtai.c (tags: r0_7_50, r0_7_49, r0_7_48): fix rtai.h
-         include
+       * comedi/rtai.c: fix rtai.h include
 
 2000-07-26 19:10  ds
 
-       * comedi/: comedi_module.h, comedi_rt.h (tags: r0_7_50, r0_7_49,
-         r0_7_48): fix config.h include, as per modbuild-0.0.2
+       * comedi/: comedi_module.h, comedi_rt.h: fix config.h include, as
+         per modbuild-0.0.2
 
 2000-07-26 19:10  ds
 
 
 2000-07-26 19:07  ds
 
-       * Makefile (tags: r0_7_48), Makefile.modbuild, scripts/Configure,
-         scripts/check_kernel (tags: r0_7_50, r0_7_49, r0_7_48),
-         scripts/config.in (tags: r0_7_59, r0_7_58, r0_7_57, r0_7_56,
-         r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49,
-         r0_7_48), scripts/dep.linux (tags: r0_7_53, r0_7_52, r0_7_51,
-         r0_7_50, r0_7_49, r0_7_48), scripts/dep.rtai, scripts/dep.rtlinux
-         (tags: r0_7_49, r0_7_48), scripts/mkdep.c (tags: r0_7_61,
-         r0_7_60, r0_7_59, r0_7_58, r0_7_57, r0_7_56, r0_7_55, r0_7_54,
-         r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49, r0_7_48),
-         scripts/preconfigure, arch/Makefile.noarch (tags: r0_7_61,
-         r0_7_60, r0_7_59, r0_7_58, r0_7_57, r0_7_56, r0_7_55, r0_7_54,
-         r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49, r0_7_48): merge
-         modbuild-0.0.2 changes
+       * Makefile, Makefile.modbuild, scripts/Configure,
+         scripts/check_kernel, scripts/config.in, scripts/dep.linux,
+         scripts/dep.rtai, scripts/dep.rtlinux, scripts/mkdep.c,
+         scripts/preconfigure, arch/Makefile.noarch: merge modbuild-0.0.2
+         changes
 
 2000-07-26 16:51  ds
 
-       * comedi/rtai.c, comedi/drivers/comedi_parport.c (tags: r0_7_49,
-         r0_7_48), comedi/drivers/ni_mio_common.c, include/comedi.h:
-         changes
+       * comedi/rtai.c, comedi/drivers/comedi_parport.c,
+         comedi/drivers/ni_mio_common.c, include/comedi.h: changes
 
 2000-07-25 20:28  ds
 
        * Makefile: version bump
 
+2000-07-24 15:43  tag r0_7_47
+
 2000-07-24 15:43  ds
 
-       * Documentation/comedi/drivers.txt (tags: r0_7_49, r0_7_48),
-         comedi/Config.in, comedi/drivers/8255.h (tags: r0_7_50, r0_7_49,
-         r0_7_48), comedi/drivers/Makefile (tags: r0_7_50, r0_7_49,
-         r0_7_48), scripts/Configure.help (tags: r0_7_49, r0_7_48),
-         comedi/drivers/pcl724.c (tags: r0_7_50, r0_7_49, r0_7_48) (utags:
-         r0_7_47): patch from dobes
+       * Documentation/comedi/drivers.txt, comedi/Config.in,
+         comedi/drivers/8255.h, comedi/drivers/Makefile,
+         scripts/Configure.help, comedi/drivers/pcl724.c: patch from dobes
 
 2000-07-24 15:42  ds
 
-       * comedi/drivers/skel.c (tags: r0_7_50, r0_7_49, r0_7_48, r0_7_47):
-         added skeleton driver
+       * comedi/drivers/skel.c: added skeleton driver
 
 2000-07-24 15:41  ds
 
-       * Makefile (tags: r0_7_47), Documentation/comedi/FAQ (tags:
-         r0_7_59, r0_7_58, r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53,
-         r0_7_52, r0_7_51, r0_7_50, r0_7_49, r0_7_48, r0_7_47),
-         Documentation/comedi/hardware (tags: r0_7_49, r0_7_48, r0_7_47),
-         comedi/Config.in, comedi/Makefile (tags: r0_7_50, r0_7_49,
-         r0_7_48, r0_7_47), comedi/comedi_fops.c (tags: r0_7_47),
-         comedi/comedi_module.h (tags: r0_7_47), comedi/drivers.c (tags:
-         r0_7_47), comedi/drivers/Makefile, comedi/drivers/das08-new.c
-         (tags: r0_7_50, r0_7_49, r0_7_48, r0_7_47),
-         comedi/drivers/das16-new.c (tags: r0_7_50, r0_7_49, r0_7_48,
-         r0_7_47), comedi/drivers/dt282x.c (tags: r0_7_47),
-         comedi/drivers/ni_atmio.c (tags: r0_7_47),
-         comedi/drivers/ni_atmio16d.c (tags: r0_7_50, r0_7_49, r0_7_48,
-         r0_7_47), comedi/drivers/ni_mio_common.c (tags: r0_7_47),
-         comedi/drivers/ni_mio_cs.c (tags: r0_7_47),
-         comedi/drivers/ni_pcimio.c (tags: r0_7_47),
-         comedi/drivers/ni_stc.h (tags: r0_7_47): lots of changes
+       * Makefile, Documentation/comedi/FAQ,
+         Documentation/comedi/hardware, comedi/Config.in, comedi/Makefile,
+         comedi/comedi_fops.c, comedi/comedi_module.h, comedi/drivers.c,
+         comedi/drivers/Makefile, comedi/drivers/das08-new.c,
+         comedi/drivers/das16-new.c, comedi/drivers/dt282x.c,
+         comedi/drivers/ni_atmio.c, comedi/drivers/ni_atmio16d.c,
+         comedi/drivers/ni_mio_common.c, comedi/drivers/ni_mio_cs.c,
+         comedi/drivers/ni_pcimio.c, comedi/drivers/ni_stc.h: lots of
+         changes
 
 2000-07-21 18:38  ds
 
-       * comedi/drivers/: pcl812.c, pcl818.c (utags: r0_7_47, r0_7_48,
-         r0_7_49, r0_7_50): iobase fix
+       * comedi/drivers/: pcl812.c, pcl818.c: iobase fix
 
 2000-07-21 18:37  ds
 
-       * comedi/drivers/pcl726.c (tags: r0_7_50, r0_7_49, r0_7_48,
-         r0_7_47): updates from Michal Dobes
+       * comedi/drivers/pcl726.c: updates from Michal Dobes
 
 2000-07-14 22:37  ds
 
        * comedi/: comedi_module.h, drivers/das08-new.c,
          drivers/das16-new.c: changes
 
+2000-07-13 13:31  tag r0_7_46
+
 2000-07-13 13:31  ds
 
-       * Makefile (tags: r0_7_46): version bump
+       * Makefile: version bump
 
 2000-07-13 13:25  ds
 
-       * comedi/comedi_fops.c, comedi/drivers.c, comedi/kern_compat.h
-         (tags: r0_7_50, r0_7_49, r0_7_48, r0_7_47), scripts/config.in
-         (tags: r0_7_47) (utags: r0_7_46): compilation fixes
+       * comedi/comedi_fops.c, comedi/drivers.c, comedi/kern_compat.h,
+         scripts/config.in: compilation fixes
 
 2000-07-13 13:15  ds
 
-       * comedi/drivers/: ni_mio_common.c, ni_pcimio.c (utags: r0_7_46):
-         fix breakage
+       * comedi/drivers/: ni_mio_common.c, ni_pcimio.c: fix breakage
 
 2000-07-13 13:02  ds
 
 
 2000-07-12 20:46  ds
 
-       * comedi/Config.in (tags: r0_7_46), comedi/Makefile (tags:
-         r0_7_46), comedi/drivers/8255.c (tags: r0_7_47, r0_7_46),
-         comedi/drivers/Makefile (tags: r0_7_46),
-         comedi/drivers/comedi_parport.c (tags: r0_7_47, r0_7_46),
-         comedi/drivers/daqboard2000.c (tags: r0_7_48, r0_7_47, r0_7_46),
-         comedi/drivers/das08.c (tags: r0_7_50, r0_7_49, r0_7_48, r0_7_47,
-         r0_7_46), comedi/drivers/das08jr.c (tags: r0_7_50, r0_7_49,
-         r0_7_48, r0_7_47, r0_7_46), comedi/drivers/das16.c (tags:
-         r0_7_47, r0_7_46), comedi/drivers/das1600.c (tags: r0_7_50,
-         r0_7_49, r0_7_48, r0_7_47, r0_7_46), comedi/drivers/das6402.c
-         (tags: r0_7_50, r0_7_49, r0_7_48, r0_7_47, r0_7_46),
-         comedi/drivers/dt2801.c (tags: r0_7_50, r0_7_49, r0_7_48,
-         r0_7_47, r0_7_46), comedi/drivers/dt2811.c (tags: r0_7_50,
-         r0_7_49, r0_7_48, r0_7_47, r0_7_46), comedi/drivers/dt2814.c
-         (tags: r0_7_50, r0_7_49, r0_7_48, r0_7_47, r0_7_46),
-         comedi/drivers/dt2815.c (tags: r0_7_50, r0_7_49, r0_7_48,
-         r0_7_47, r0_7_46), comedi/drivers/dt2817.c (tags: r0_7_50,
-         r0_7_49, r0_7_48, r0_7_47, r0_7_46), comedi/drivers/dt282x.c
-         (tags: r0_7_46), comedi/drivers/dt3000.c (tags: r0_7_47,
-         r0_7_46), comedi/drivers/ii_pci20kc.c (tags: r0_7_49, r0_7_48,
-         r0_7_47, r0_7_46), comedi/drivers/multiq3.c (tags: r0_7_50,
-         r0_7_49, r0_7_48, r0_7_47, r0_7_46), comedi/drivers/ni_atmio.c
-         (tags: r0_7_46), comedi/drivers/ni_atmio16d.c (tags: r0_7_46),
-         comedi/drivers/ni_pcidio.c (tags: r0_7_47, r0_7_46),
-         comedi/drivers/ni_pcimio.c, comedi/drivers/pcl711.c (tags:
-         r0_7_50, r0_7_49, r0_7_48, r0_7_47, r0_7_46),
-         comedi/drivers/pcl725.c (tags: r0_7_50, r0_7_49, r0_7_48,
-         r0_7_47, r0_7_46), comedi/drivers/pcl726.c (tags: r0_7_46),
-         comedi/drivers/pcl812.c (tags: r0_7_46), comedi/drivers/pcl818.c
-         (tags: r0_7_46), comedi/drivers/rti800.c (tags: r0_7_48, r0_7_47,
-         r0_7_46), comedi/drivers/rti802.c (tags: r0_7_50, r0_7_49,
-         r0_7_48, r0_7_47, r0_7_46), comedi/kcomedilib/Makefile (tags:
-         r0_7_54, r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49, r0_7_48,
-         r0_7_47, r0_7_46), scripts/check_kernel (tags: r0_7_47, r0_7_46),
-         scripts/config.dist (tags: r0_7_53, r0_7_52, r0_7_51, r0_7_50,
-         r0_7_49, r0_7_48, r0_7_47, r0_7_46), scripts/config.in: module,
-         Makefile, config changes
+       * comedi/Config.in, comedi/Makefile, comedi/drivers/8255.c,
+         comedi/drivers/Makefile, comedi/drivers/comedi_parport.c,
+         comedi/drivers/daqboard2000.c, comedi/drivers/das08.c,
+         comedi/drivers/das08jr.c, comedi/drivers/das16.c,
+         comedi/drivers/das1600.c, comedi/drivers/das6402.c,
+         comedi/drivers/dt2801.c, comedi/drivers/dt2811.c,
+         comedi/drivers/dt2814.c, comedi/drivers/dt2815.c,
+         comedi/drivers/dt2817.c, comedi/drivers/dt282x.c,
+         comedi/drivers/dt3000.c, comedi/drivers/ii_pci20kc.c,
+         comedi/drivers/multiq3.c, comedi/drivers/ni_atmio.c,
+         comedi/drivers/ni_atmio16d.c, comedi/drivers/ni_pcidio.c,
+         comedi/drivers/ni_pcimio.c, comedi/drivers/pcl711.c,
+         comedi/drivers/pcl725.c, comedi/drivers/pcl726.c,
+         comedi/drivers/pcl812.c, comedi/drivers/pcl818.c,
+         comedi/drivers/rti800.c, comedi/drivers/rti802.c,
+         comedi/kcomedilib/Makefile, scripts/check_kernel,
+         scripts/config.dist, scripts/config.in: module, Makefile, config
+         changes
 
 2000-07-12 20:44  ds
 
-       * comedi/drivers/: ni_mio_common.c, ni_mio_cs.c (tags: r0_7_46):
-         random editing
+       * comedi/drivers/: ni_mio_common.c, ni_mio_cs.c: random editing
 
 2000-07-12 20:42  ds
 
-       * comedi/comedi_module.h (tags: r0_7_46): kernel compile fixes
+       * comedi/comedi_module.h: kernel compile fixes
 
 2000-07-12 20:39  ds
 
 
 2000-07-12 20:39  ds
 
-       * TODO (tags: r0_7_47, r0_7_46): [no log message]
+       * TODO: [no log message]
 
 2000-07-12 20:38  ds
 
-       * README (tags: r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49,
-         r0_7_48, r0_7_47, r0_7_46): email address changes
+       * README: email address changes
 
 2000-07-12 20:38  ds
 
 
 2000-07-12 20:37  ds
 
-       * Documentation/comedi/hardware (tags: r0_7_46): hardware list
+       * Documentation/comedi/hardware: hardware list
 
 2000-07-12 20:35  ds
 
-       * comedi/drivers/: das08-new.c, das16-new.c (utags: r0_7_46): new
-         drivers
+       * comedi/drivers/: das08-new.c, das16-new.c: new drivers
 
 2000-07-12 14:19  ds
 
 
 2000-06-26 11:29  ds
 
-       * comedi/: rtl.c (tags: r0_7_47, r0_7_46), drivers/8253.h (tags:
-         r0_7_52, r0_7_51, r0_7_50, r0_7_49, r0_7_48, r0_7_47, r0_7_46),
-         drivers/ni_pcidio.c, drivers/pcl812.c: fix hidden include of
-         linux/module.h by rtl.h
+       * comedi/: rtl.c, drivers/8253.h, drivers/ni_pcidio.c,
+         drivers/pcl812.c: fix hidden include of linux/module.h by rtl.h
 
 2000-06-22 15:27  ds
 
-       * etc/pcmcia/: comedi (tags: r0_7_59, r0_7_58, r0_7_57, r0_7_56,
-         r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49,
-         r0_7_48), comedi.conf (utags: r0_7_46, r0_7_47): added pcmcia
-         configuration scripts
+       * etc/pcmcia/: comedi, comedi.conf: added pcmcia configuration
+         scripts
+
+2000-06-15 02:51  tag r0_7_45
 
 2000-06-15 02:51  ds
 
-       * comedi/: comedi_fops.c, comedi_module.h (utags: r0_7_45): major
-         event handling changes
+       * comedi/: comedi_fops.c, comedi_module.h: major event handling
+         changes
 
 2000-06-15 02:46  ds
 
-       * comedi/drivers/ni_mio_common.c (tags: r0_7_45): made PCI DMA
-         optional
+       * comedi/drivers/ni_mio_common.c: made PCI DMA optional
 
 2000-06-15 02:42  ds
 
 
 2000-06-15 01:39  ds
 
-       * comedi/drivers.c (tags: r0_7_45): more emulation
+       * comedi/drivers.c: more emulation
 
 2000-06-15 01:10  ds
 
-       * include/comedi.h (tags: r0_7_47, r0_7_46, r0_7_45): instruction
-         support
+       * include/comedi.h: instruction support
 
 2000-06-15 01:10  ds
 
-       * comedi/: comedi_fops.c, comedi_module.h, comedi_rt.h (tags:
-         r0_7_47, r0_7_46, r0_7_45), drivers.c: insn support, rt
-         virtualization, runflags
+       * comedi/: comedi_fops.c, comedi_module.h, comedi_rt.h, drivers.c:
+         insn support, rt virtualization, runflags
 
 2000-06-15 01:03  ds
 
-       * comedi/drivers/: ni_atmio.c (tags: r0_7_45), ni_mio_common.c,
-         ni_mio_cs.c (tags: r0_7_45), ni_pcimio.c (tags: r0_7_45): fix
-         more sign bit problems, added insn support for ai
+       * comedi/drivers/: ni_atmio.c, ni_mio_common.c, ni_mio_cs.c,
+         ni_pcimio.c: fix more sign bit problems, added insn support for
+         ai
 
 2000-06-15 01:00  ds
 
-       * comedi/Config.in (tags: r0_7_45): fix CONFIG_PCI dependency
+       * comedi/Config.in: fix CONFIG_PCI dependency
 
 2000-06-15 00:57  ds
 
-       * comedi/rtai.c (tags: r0_7_47, r0_7_46, r0_7_45): fix crash on
-         rmmod dur to free_irq()
+       * comedi/rtai.c: fix crash on rmmod dur to free_irq()
 
 2000-06-14 18:23  ds
 
-       * comedi/drivers/dt2801.c (tags: r0_7_45): fix compile warning
+       * comedi/drivers/dt2801.c: fix compile warning
 
 2000-06-14 03:56  ds
 
-       * Documentation/comedi/notes/: boards (tags: r0_7_74, r0_7_73,
-         r0_7_72, r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70,
-         r0_7_69, r0_7_67x, r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62,
-         r0_7_61, r0_7_60, r0_7_59, r0_7_58, r0_7_57, r0_7_56, r0_7_55,
-         r0_7_54, r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49, r0_7_48,
-         r0_7_47, r0_7_46, r0_7_45), das, regmaps (tags: r0_7_74, r0_7_73,
-         r0_7_72, r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70,
-         r0_7_69, r0_7_67x, r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62,
-         r0_7_61, r0_7_60, r0_7_59, r0_7_58, r0_7_57, r0_7_56, r0_7_55,
-         r0_7_54, r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49, r0_7_48,
-         r0_7_47, r0_7_46, r0_7_45): collected information about DAS
-         boards
+       * Documentation/comedi/notes/: boards, das, regmaps: collected
+         information about DAS boards
 
 2000-06-14 03:45  ds
 
-       * comedi/drivers/: mite.c (tags: r0_7_47, r0_7_46, r0_7_45), mite.h
-         (tags: r0_7_47, r0_7_46, r0_7_45), ni_mio_common.c, ni_pcimio.c:
+       * comedi/drivers/: mite.c, mite.h, ni_mio_common.c, ni_pcimio.c:
          PCI DMA support
 
 2000-06-14 03:26  ds
 
-       * comedi/: comedi_module.h, comedi_rt.h, rt.c (tags: r0_7_50,
-         r0_7_49, r0_7_48, r0_7_47, r0_7_46, r0_7_45), rt_pend_tq.h (tags:
-         r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51,
-         r0_7_50, r0_7_49, r0_7_48, r0_7_47, r0_7_46, r0_7_45), rtai.c,
-         rtl.c (tags: r0_7_45): TM added rt interrupt for user space
-         support
+       * comedi/: comedi_module.h, comedi_rt.h, rt.c, rt_pend_tq.h,
+         rtai.c, rtl.c: TM added rt interrupt for user space support
 
 2000-06-14 03:02  ds
 
-       * comedi/drivers/: ni_atmio.c, ni_mio_common.c, ni_stc.h (tags:
-         r0_7_46, r0_7_45): finally fix 2's compliment bug in asynchronous
+       * comedi/drivers/: ni_atmio.c, ni_mio_common.c, ni_stc.h: finally
+         fix 2's compliment bug in asynchronous
 
 2000-06-02 03:03  ds
 
-       * comedi/realtime/vd_dds.c (tags: r0_7_50, r0_7_49, r0_7_48,
-         r0_7_47, r0_7_46, r0_7_45): updates for comedi interface changes,
+       * comedi/realtime/vd_dds.c: updates for comedi interface changes,
          fixes for rtai
 
 2000-06-02 03:03  ds
 
 2000-05-26 20:54  ds
 
-       * comedi/kcomedilib/kcomedilib_main.c (tags: r0_7_48, r0_7_47,
-         r0_7_46, r0_7_45): [no log message]
+       * comedi/kcomedilib/kcomedilib_main.c: [no log message]
 
 2000-05-26 20:54  ds
 
-       * comedi/drivers/: ni_atmio.c, ni_atmio16d.c (tags: r0_7_45),
-         ni_mio_common.c, ni_mio_cs.c, ni_pcimio.c, ni_stc.h: patch from
-         Tomasz, more fixes for ni_mio_cs.c
+       * comedi/drivers/: ni_atmio.c, ni_atmio16d.c, ni_mio_common.c,
+         ni_mio_cs.c, ni_pcimio.c, ni_stc.h: patch from Tomasz, more fixes
+         for ni_mio_cs.c
 
 2000-05-26 20:53  ds
 
-       * Rules.make (tags: r0_7_61, r0_7_60, r0_7_59, r0_7_58, r0_7_57,
-         r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51, r0_7_50,
-         r0_7_49, r0_7_48, r0_7_47, r0_7_46, r0_7_45), comedi/Config.in,
-         comedi/comedi_fops.c: patch from Tomasz
+       * Rules.make, comedi/Config.in, comedi/comedi_fops.c: patch from
+         Tomasz
 
 2000-05-26 20:30  ds
 
        * comedi/drivers/ni_mio_cs.c: Correctly configures card --
          fingerprint works
 
+2000-05-24 19:35  tag r44
+
 2000-05-24 19:35  ds
 
-       * comedi/Config.in (tags: r44): fix last PCMCIA fix
+       * comedi/Config.in: fix last PCMCIA fix
 
 2000-05-24 19:31  ds
 
-       * Makefile (tags: r0_7_45, r44): fix previous PCMCIA breakage
+       * Makefile: fix previous PCMCIA breakage
 
 2000-05-24 19:29  ds
 
-       * comedi/drivers/daqboard2000.c (tags: r0_7_45, r44): PCI fixes for
-         2.3
+       * comedi/drivers/daqboard2000.c: PCI fixes for 2.3
 
 2000-05-24 19:19  ds
 
 
 2000-05-24 19:18  ds
 
-       * comedi/drivers/ni_mio_cs.c (tags: r44): more work
+       * comedi/drivers/ni_mio_cs.c: more work
 
 2000-05-24 18:51  ds
 
-       * comedi/drivers/dt2815.c (tags: r0_7_45, r44): warning fix
+       * comedi/drivers/dt2815.c: warning fix
 
 2000-05-24 18:32  ds
 
-       * comedi/drivers/ni_pcimio.c (tags: r44): add gpct members to
-         ni_private
+       * comedi/drivers/ni_pcimio.c: add gpct members to ni_private
 
 2000-05-24 18:27  ds
 
-       * scripts/Configure.help (tags: r0_7_46, r0_7_45, r44): Heavily
-         updated for new drivers, new CONFIG_ options
+       * scripts/Configure.help: Heavily updated for new drivers, new
+         CONFIG_ options
 
 2000-05-24 17:43  ds
 
-       * comedi/range.c (tags: r0_7_47, r0_7_46, r0_7_45, r44): range_type
-         cleanup
+       * comedi/range.c: range_type cleanup
 
 2000-05-24 17:43  ds
 
-       * comedi/comedi_fops.c (tags: r44): dev->minor fix, a minor bugfix
+       * comedi/comedi_fops.c: dev->minor fix, a minor bugfix
 
 2000-05-24 17:42  ds
 
-       * comedi/kcomedilib/kcomedilib_main.c (tags: r44): additions from
-         Michal Dobes
+       * comedi/kcomedilib/kcomedilib_main.c: additions from Michal Dobes
 
 2000-05-24 17:25  ds
 
-       * include/comedi.h (tags: r44): added SDF_PACKED
+       * include/comedi.h: added SDF_PACKED
 
 2000-05-23 22:31  ds
 
-       * comedi/: comedi_ksyms.c (tags: r0_7_50, r0_7_49, r0_7_48,
-         r0_7_47, r0_7_46, r0_7_45), comedi_module.h, drivers.c (utags:
-         r44): dynamic allocation of devices for PCMCIA
+       * comedi/: comedi_ksyms.c, comedi_module.h, drivers.c: dynamic
+         allocation of devices for PCMCIA
 
 2000-05-23 22:26  ds
 
 
 2000-05-23 22:26  ds
 
-       * comedi/drivers/: 8253.h, pcl818.c (utags: r0_7_45, r44): patch
-         from Michal Dobes
+       * comedi/drivers/: 8253.h, pcl818.c: patch from Michal Dobes
 
 2000-05-23 14:21  ds
 
 
 2000-05-23 13:50  ds
 
-       * comedi/drivers/: daqboard2000.c, daqboard2000_fpga.h (tags:
-         r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51, r0_7_50,
-         r0_7_49, r0_7_48, r0_7_47, r0_7_46, r0_7_45, r44): patch from
+       * comedi/drivers/: daqboard2000.c, daqboard2000_fpga.h: patch from
          Anders Blomdell
 
 2000-05-23 13:46  ds
 
-       * Documentation/comedi/drivers.txt (tags: r0_7_46, r0_7_45, r44),
-         comedi/Config.in, comedi/drivers/8253.h, comedi/drivers/Makefile
-         (tags: r0_7_45, r44), comedi/drivers/pcl711.c (tags: r0_7_45,
-         r44), comedi/drivers/pcl812.c (tags: r0_7_45, r44): patch from
+       * Documentation/comedi/drivers.txt, comedi/Config.in,
+         comedi/drivers/8253.h, comedi/drivers/Makefile,
+         comedi/drivers/pcl711.c, comedi/drivers/pcl812.c: patch from
          Michael Dobes
 
 2000-05-23 13:44  ds
 
        * comedi/: Config.in, drivers.c, drivers/Makefile,
-         drivers/ni_atmio.c (tags: r44), drivers/ni_atmio16d.c (tags:
-         r44), drivers/ni_mio_common.c (tags: r44), drivers/ni_stc.h
-         (tags: r44): patch from Anders Blomdell
+         drivers/ni_atmio.c, drivers/ni_atmio16d.c,
+         drivers/ni_mio_common.c, drivers/ni_stc.h: patch from Anders
+         Blomdell
 
 2000-05-21 15:23  ds
 
 
 2000-05-05 15:24  ds
 
-       * comedi/: Config.in, drivers.c, drivers/Makefile, drivers/dt3000.c
-         (tags: r0_7_45, r44), drivers/ni_atmio.c, drivers/ni_atmio16d.c:
+       * comedi/: Config.in, drivers.c, drivers/Makefile,
+         drivers/dt3000.c, drivers/ni_atmio.c, drivers/ni_atmio16d.c:
          random unknown changes
 
 2000-05-05 15:23  ds
 
        * comedi/drivers/ni_atmio16d.c: added ni_atmio16d.c
 
+2000-04-06 03:18  tag r0_7_42
+
 2000-04-06 03:18  ds
 
-       * Makefile (tags: r0_7_42): LINUXDIR fix
+       * Makefile: LINUXDIR fix
 
 2000-04-04 00:59  ds
 
-       * comedi/kcomedilib/kcomedilib_main.c (tags: r0_7_42): compile fix
+       * comedi/kcomedilib/kcomedilib_main.c: compile fix
 
 2000-04-04 00:59  ds
 
-       * comedi/drivers/ni_mio_common.c (tags: r0_7_42): fixes for
-         continuous acquisition
+       * comedi/drivers/ni_mio_common.c: fixes for continuous acquisition
 
 2000-03-23 13:58  ds
 
-       * comedi/kcomedilib/: data.c (tags: r0_7_48, r0_7_47, r0_7_46,
-         r0_7_45, r44, r0_7_42), dio.c (tags: r0_7_48, r0_7_47, r0_7_46,
-         r0_7_45, r44, r0_7_42), kcomedilib_main.c: fixed data_len issues
+       * comedi/kcomedilib/: data.c, dio.c, kcomedilib_main.c: fixed
+         data_len issues
+
+2000-03-22 14:35  tag r0_7_41
 
 2000-03-22 14:35  ds
 
-       * comedi/drivers/ni_pcidio.c (tags: r0_7_45, r44, r0_7_42,
-         r0_7_41): allocates correct number of subdevs
+       * comedi/drivers/ni_pcidio.c: allocates correct number of subdevs
 
 2000-03-22 14:34  ds
 
-       * comedi/drivers/das1600.c (tags: r0_7_45, r44, r0_7_42, r0_7_41):
-         tentative patch for das16 compatibility
+       * comedi/drivers/das1600.c: tentative patch for das16 compatibility
 
 2000-03-22 14:33  ds
 
-       * comedi/drivers/8255.h (tags: r0_7_46, r0_7_45, r44, r0_7_42,
-         r0_7_41): added warning when not configured
+       * comedi/drivers/8255.h: added warning when not configured
 
 2000-03-21 15:08  ds
 
-       * Makefile, comedi/kcomedilib/kcomedilib_main.c (utags: r0_7_41):
-         compilation fix
+       * Makefile, comedi/kcomedilib/kcomedilib_main.c: compilation fix
 
 2000-03-13 20:17  ds
 
 
 2000-03-11 11:17  ds
 
-       * comedi/comedi_fops.c (tags: r0_7_42, r0_7_41),
-         comedi/kcomedilib/kcomedilib_main.c, include/comedi.h (tags:
-         r0_7_42, r0_7_41): Added prototypes for kcomedilib functions in
+       * comedi/comedi_fops.c, comedi/kcomedilib/kcomedilib_main.c,
+         include/comedi.h: Added prototypes for kcomedilib functions in
          comedi.h, added comedi_open and comedi_close, removed conflict
          with comedi.
 
 2000-03-09 17:05  ds
 
-       * Documentation/comedi/drivers.txt (tags: r0_7_42, r0_7_41):
-         updates
+       * Documentation/comedi/drivers.txt: updates
 
 2000-03-09 17:04  ds
 
-       * comedi/drivers.c (tags: r0_7_42, r0_7_41): dev->board bugfix
+       * comedi/drivers.c: dev->board bugfix
 
 2000-03-09 16:28  ds
 
 
        * comedi/drivers/ni_pcidio.c: Correctly inits 6503
 
+2000-03-06 03:37  tag r0_7_40
+
 2000-03-06 03:37  ds
 
-       * comedi/drivers/ni_mio_common.c (tags: r0_7_41, r0_7_40): fixups
-         for commands
+       * comedi/drivers/ni_mio_common.c: fixups for commands
 
 2000-03-06 03:36  ds
 
-       * comedi/comedi_fops.c (tags: r0_7_40): Split do_trig_ioctl() and
-         fixups for commands.
+       * comedi/comedi_fops.c: Split do_trig_ioctl() and fixups for
+         commands.
 
 2000-03-05 22:59  ds
 
-       * comedi/range.c (tags: r0_7_42, r0_7_41, r0_7_40): warning fix
+       * comedi/range.c: warning fix
 
 2000-03-05 22:59  ds
 
 
 2000-03-05 21:58  ds
 
-       * comedi/realtime/: vd_dds.c, vd_timer.c (tags: r0_7_50, r0_7_49,
-         r0_7_48, r0_7_47, r0_7_46, r0_7_45) (utags: r0_7_40, r0_7_41,
-         r0_7_42, r44): fixes to compile for RTAI (doesn't work)
+       * comedi/realtime/: vd_dds.c, vd_timer.c: fixes to compile for RTAI
+         (doesn't work)
 
 2000-03-05 20:18  ds
 
-       * comedi/drivers/8253.h (tags: r0_7_42, r0_7_41, r0_7_40): New file
+       * comedi/drivers/8253.h: New file
 
 2000-03-05 20:18  ds
 
-       * comedi/: Config.in (tags: r0_7_42, r0_7_41, r0_7_40),
-         comedi_fops.c, comedi_module.h (tags: r0_7_42, r0_7_41, r0_7_40),
-         drivers.c (tags: r0_7_40), proc.c (tags: r0_7_47, r0_7_46,
-         r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40), range.c,
-         drivers/das1600.c (tags: r0_7_40), drivers/das6402.c (tags:
-         r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40), drivers/dt2814.c (tags:
-         r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40), drivers/dt282x.c (tags:
-         r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40), drivers/dt3000.c (tags:
-         r0_7_42, r0_7_41, r0_7_40), drivers/ni_mio_common.c,
-         drivers/ni_pcidio.c (tags: r0_7_40), drivers/pcl711.c (tags:
-         r0_7_42, r0_7_41, r0_7_40), drivers/pcl812.c (tags: r0_7_42,
-         r0_7_41, r0_7_40), kcomedilib/dio.c (tags: r0_7_41, r0_7_40),
-         kcomedilib/kcomedilib_main.c (tags: r0_7_40), realtime/vd_dds.c,
-         realtime/vd_timer.c: Removed timer_type globally, moved to
-         comedi_get_device_by_minor(), removed VER08 conf option, made all
-         timers TIMER_nanosec (ni_mio_common, pcl711, pcl812), pcl812
-         changes, pcl812 indent
+       * comedi/: Config.in, comedi_fops.c, comedi_module.h, drivers.c,
+         proc.c, range.c, drivers/das1600.c, drivers/das6402.c,
+         drivers/dt2814.c, drivers/dt282x.c, drivers/dt3000.c,
+         drivers/ni_mio_common.c, drivers/ni_pcidio.c, drivers/pcl711.c,
+         drivers/pcl812.c, kcomedilib/dio.c, kcomedilib/kcomedilib_main.c,
+         realtime/vd_dds.c, realtime/vd_timer.c: Removed timer_type
+         globally, moved to comedi_get_device_by_minor(), removed VER08
+         conf option, made all timers TIMER_nanosec (ni_mio_common,
+         pcl711, pcl812), pcl812 changes, pcl812 indent
 
 2000-03-05 20:13  ds
 
-       * TODO (tags: r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40): [no log
-         message]
+       * TODO: [no log message]
 
 2000-03-03 21:07  ds
 
 
 2000-03-03 19:08  ds
 
-       * Documentation/comedi/drivers.txt (tags: r0_7_40): added new
-         drivers
+       * Documentation/comedi/drivers.txt: added new drivers
 
 2000-03-03 18:56  ds
 
-       * etc/conf.modules (tags: r0_7_61, r0_7_60, r0_7_59, r0_7_58,
-         r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51,
-         r0_7_50, r0_7_49, r0_7_48, r0_7_47, r0_7_46, r0_7_45, r44,
-         r0_7_42, r0_7_41, r0_7_40): added char-major-98-0
+       * etc/conf.modules: added char-major-98-0
 
 2000-03-03 18:54  ds
 
 
 2000-03-03 18:51  ds
 
-       * INSTALL (tags: r0_7_48, r0_7_47, r0_7_46, r0_7_45, r44, r0_7_42,
-         r0_7_41, r0_7_40): updated INSTALL
+       * INSTALL: updated INSTALL
 
 2000-03-03 18:35  ds
 
 
 2000-03-03 18:29  ds
 
-       * INSTALL.RTAI, INSTALL.RTLinux (utags: r0_7_40, r0_7_41, r0_7_42,
-         r0_7_45, r0_7_46, r0_7_47, r0_7_48, r0_7_49, r0_7_50, r0_7_51,
-         r0_7_52, r0_7_53, r0_7_54, r0_7_55, r0_7_56, r0_7_57, r0_7_58,
-         r0_7_59, r44): new install files for RTAI and RTLinux
+       * INSTALL.RTAI, INSTALL.RTLinux: new install files for RTAI and
+         RTLinux
 
 2000-03-03 18:10  ds
 
 
 2000-03-03 18:06  ds
 
-       * comedi/comedi_ksyms.c (tags: r0_7_42, r0_7_41, r0_7_40): removed
-         symbols that were moved to kcomedilib
+       * comedi/comedi_ksyms.c: removed symbols that were moved to
+         kcomedilib
 
 2000-03-02 03:16  ds
 
 2000-03-02 03:11  ds
 
        * Documentation/comedi/drivers.txt, comedi/Config.in,
-         comedi/comedi_module.h, comedi/drivers.c, comedi/drivers/Makefile
-         (tags: r0_7_42, r0_7_41, r0_7_40), comedi/drivers/pcl812.c: Added
-         pcl812 driver from Michal Dobes <majkl@tesnet.cz>
+         comedi/comedi_module.h, comedi/drivers.c,
+         comedi/drivers/Makefile, comedi/drivers/pcl812.c: Added pcl812
+         driver from Michal Dobes <majkl@tesnet.cz>
 
 2000-02-26 20:39  ds
 
-       * comedi/drivers/ii_pci20kc.c (tags: r0_7_45, r44, r0_7_42,
-         r0_7_41, r0_7_40): modularized PCI20k modules, general cleanup
+       * comedi/drivers/ii_pci20kc.c: modularized PCI20k modules, general
+         cleanup
 
 2000-02-26 20:38  ds
 
 
 2000-02-26 18:12  ds
 
-       * comedi/kcomedilib/Makefile (tags: r0_7_45, r44, r0_7_42, r0_7_41,
-         r0_7_40): fixed linking
+       * comedi/kcomedilib/Makefile: fixed linking
 
 2000-02-26 18:04  ds
 
-       * Makefile (tags: r0_7_40): no changes
+       * Makefile: no changes
 
 2000-02-26 18:03  ds
 
 
 2000-02-26 17:59  ds
 
-       * comedi/drivers/ni_pcimio.c (tags: r0_7_42, r0_7_41, r0_7_40):
-         added PCI ID
+       * comedi/drivers/ni_pcimio.c: added PCI ID
 
 2000-02-26 17:59  ds
 
 
 2000-02-24 18:31  ds
 
-       * comedi/Makefile (tags: r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40):
-         don't always make realtime subdir
+       * comedi/Makefile: don't always make realtime subdir
 
 2000-02-21 21:52  ds
 
-       * comedi/dummy.c (tags: r0_7_50, r0_7_49, r0_7_48, r0_7_47,
-         r0_7_46, r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40): added
-         init_module()/cleanup_module()
+       * comedi/dummy.c: added init_module()/cleanup_module()
 
 2000-02-20 17:54  ds
 
-       * comedi/kcomedilib/: Makefile, data.c (tags: r0_7_41, r0_7_40),
-         dio.c: added comedi_data_*() and comedi_dio_*() functions
+       * comedi/kcomedilib/: Makefile, data.c, dio.c: added
+         comedi_data_*() and comedi_dio_*() functions
 
 2000-02-20 17:53  ds
 
        * Makefile, comedi/comedi_fops.c, comedi/range.c,
          comedi/drivers/ni_mio_common.c, comedi/drivers/ni_pcimio.c,
          comedi/realtime/vd_dds.c, comedi/realtime/vd_timer.c,
-         include/comedi.h (tags: r0_7_40): command changes, range fixes
+         include/comedi.h: command changes, range fixes
 
 2000-02-15 16:49  ds
 
-       * comedi/realtime/Makefile (tags: r0_7_58, r0_7_57, r0_7_56,
-         r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49,
-         r0_7_48, r0_7_47, r0_7_46, r0_7_45, r44, r0_7_42, r0_7_41,
-         r0_7_40): Added comedi/realtime/Makefile
+       * comedi/realtime/Makefile: Added comedi/realtime/Makefile
 
 2000-02-15 03:02  ds
 
        * comedi/Makefile, comedi/comedi_fops.c, comedi/comedi_ksyms.c,
          comedi/comedi_module.h, comedi/drivers.c, comedi/dummy.c,
-         comedi/mk_range.c, comedi/range.c, comedi/drivers/8255.c (tags:
-         r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40),
-         comedi/drivers/Makefile, comedi/drivers/comedi_parport.c (tags:
-         r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40), comedi/drivers/das08.c
-         (tags: r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40),
-         comedi/drivers/das08jr.c (tags: r0_7_45, r44, r0_7_42, r0_7_41,
-         r0_7_40), comedi/drivers/das1600.c, comedi/drivers/das6402.c,
-         comedi/drivers/dt2801.c (tags: r44, r0_7_42, r0_7_41, r0_7_40),
-         comedi/drivers/dt2811.c (tags: r0_7_45, r44, r0_7_42, r0_7_41,
-         r0_7_40), comedi/drivers/dt2814.c, comedi/drivers/dt2815.c (tags:
-         r0_7_42, r0_7_41, r0_7_40), comedi/drivers/dt2817.c (tags:
-         r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40),
-         comedi/drivers/dt282x.c, comedi/drivers/dt3000.c,
-         comedi/drivers/multiq3.c (tags: r0_7_45, r44, r0_7_42, r0_7_41,
-         r0_7_40), comedi/drivers/ni_pcidio.c, comedi/drivers/pcl711.c,
-         comedi/drivers/pcl725.c (tags: r0_7_45, r44, r0_7_42, r0_7_41,
-         r0_7_40), comedi/drivers/pcl726.c (tags: r0_7_45, r44, r0_7_42,
-         r0_7_41, r0_7_40), comedi/drivers/rti800.c (tags: r0_7_45, r44,
-         r0_7_42, r0_7_41, r0_7_40), comedi/drivers/rti802.c (tags:
-         r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40), include/comedi.h: range
-         modularization
+         comedi/mk_range.c, comedi/range.c, comedi/drivers/8255.c,
+         comedi/drivers/Makefile, comedi/drivers/comedi_parport.c,
+         comedi/drivers/das08.c, comedi/drivers/das08jr.c,
+         comedi/drivers/das1600.c, comedi/drivers/das6402.c,
+         comedi/drivers/dt2801.c, comedi/drivers/dt2811.c,
+         comedi/drivers/dt2814.c, comedi/drivers/dt2815.c,
+         comedi/drivers/dt2817.c, comedi/drivers/dt282x.c,
+         comedi/drivers/dt3000.c, comedi/drivers/multiq3.c,
+         comedi/drivers/ni_pcidio.c, comedi/drivers/pcl711.c,
+         comedi/drivers/pcl725.c, comedi/drivers/pcl726.c,
+         comedi/drivers/rti800.c, comedi/drivers/rti802.c,
+         include/comedi.h: range modularization
 
 2000-02-15 03:01  ds
 
-       * comedi/drivers/ni_stc.h (tags: r0_7_42, r0_7_41, r0_7_40):
-         ai_speed addition
+       * comedi/drivers/ni_stc.h: ai_speed addition
 
 2000-02-15 03:00  ds
 
-       * comedi/drivers/: ni_atmio.c (tags: r0_7_42, r0_7_41, r0_7_40),
-         ni_mio_common.c, ni_pcimio.c: range changes, command support,
-         ai_speed addition, device additions to pci_mio.c
+       * comedi/drivers/: ni_atmio.c, ni_mio_common.c, ni_pcimio.c: range
+         changes, command support, ai_speed addition, device additions to
+         pci_mio.c
 
 2000-02-12 17:47  ds
 
        * Makefile, comedi/Makefile, comedi/range.c: Updates for dt2801
          driver
 
+2000-02-09 18:55  tag r0_7_39
+
 2000-02-09 18:55  ds
 
-       * comedi/: Makefile, comedi_ksyms.c, rtl.c (tags: r44, r0_7_42,
-         r0_7_41, r0_7_40) (utags: r0_7_39): RTL fixes, export functions
-         for kcomedilib
+       * comedi/: Makefile, comedi_ksyms.c, rtl.c: RTL fixes, export
+         functions for kcomedilib
 
 2000-02-09 18:55  ds
 
-       * Makefile (tags: r0_7_39): RTL fixes
+       * Makefile: RTL fixes
 
 2000-02-09 14:45  ds
 
 
 2000-02-09 14:45  ds
 
-       * Makefile, TODO (tags: r0_7_39): version bump, fixes for RTLinux
-         compiling
+       * Makefile, TODO: version bump, fixes for RTLinux compiling
 
 2000-02-09 02:51  ds
 
-       * comedi/: comedi_module.h, drivers/dt282x.c (utags: r0_7_39):
-         initial command support for dt282x
+       * comedi/: comedi_module.h, drivers/dt282x.c: initial command
+         support for dt282x
 
 2000-02-09 01:57  ds
 
 
 2000-02-09 01:43  ds
 
-       * comedi/rt.c (tags: r44, r0_7_42, r0_7_41, r0_7_40, r0_7_39): This
-         file somehow disappeared from the repository
+       * comedi/rt.c: This file somehow disappeared from the repository
+
+2000-02-09 00:10  tag r0_7_38
 
 2000-02-09 00:10  ds
 
-       * Makefile, comedi/comedi_module.h (utags: r0_7_38): More
-         compilation fixes
+       * Makefile, comedi/comedi_module.h: More compilation fixes
 
 2000-02-08 23:59  ds
 
-       * comedi/: rtl.c (tags: r0_7_38), rtl.h, rtl_v1.h: Removed
-         unnecessary header files
+       * comedi/: rtl.c, rtl.h, rtl_v1.h: Removed unnecessary header files
 
 2000-02-08 23:57  ds
 
-       * comedi/: Makefile (tags: r0_7_38), comedi_module.h, rtai.c (tags:
-         r44, r0_7_42, r0_7_41, r0_7_40, r0_7_39, r0_7_38), rtai.h, rtl.c:
-         fixed compilation problems with RTL/RTAI
+       * comedi/: Makefile, comedi_module.h, rtai.c, rtai.h, rtl.c: fixed
+         compilation problems with RTL/RTAI
 
 2000-02-08 23:56  ds
 
-       * Documentation/comedi/drivers.txt (tags: r0_7_39, r0_7_38):
-         updated comedi_parport
+       * Documentation/comedi/drivers.txt: updated comedi_parport
 
 2000-02-08 23:56  ds
 
-       * Makefile, TODO (tags: r0_7_38): update
+       * Makefile, TODO: update
 
 2000-02-08 21:20  ds
 
-       * comedi/drivers/dt2801.c (tags: r0_7_39, r0_7_38): Duh.
-         Compilation fixes.
+       * comedi/drivers/dt2801.c: Duh.  Compilation fixes.
 
 2000-02-08 21:12  ds
 
 
 2000-02-07 18:11  ds
 
-       * comedi/drivers/comedi_parport.c (tags: r0_7_39, r0_7_38):
-         compilation fix
+       * comedi/drivers/comedi_parport.c: compilation fix
 
 2000-02-07 18:08  ds
 
-       * comedi/drivers/: Makefile (tags: r0_7_39, r0_7_38),
-         comedi_parport.c: Fix to make comedi_parport driver modular
+       * comedi/drivers/: Makefile, comedi_parport.c: Fix to make
+         comedi_parport driver modular
 
 2000-02-07 18:08  ds
 
 
 2000-02-05 16:43  ds
 
-       * comedi/drivers/das16.c (tags: r0_7_45, r44, r0_7_42, r0_7_41,
-         r0_7_40, r0_7_39, r0_7_38): Corrected type in last patch.
+       * comedi/drivers/das16.c: Corrected type in last patch.
 
 2000-02-03 18:07  ds
 
 
 2000-02-01 23:49  ds
 
-       * Makefile, comedi/Config.in (tags: r0_7_39, r0_7_38),
-         comedi/Makefile, comedi/comedi_fops.c (tags: r0_7_39, r0_7_38),
-         comedi/comedi_ksyms.c (tags: r0_7_38), comedi/module.c,
-         comedi/rtai.c, comedi/rtl.c, comedi/rtl_v1.c (tags: r0_7_50,
-         r0_7_49, r0_7_48, r0_7_47, r0_7_46, r0_7_45, r44, r0_7_42,
-         r0_7_41, r0_7_40, r0_7_39, r0_7_38),
-         comedi/drivers/ni_mio_common.c (tags: r0_7_39, r0_7_38),
-         scripts/config.dist (tags: r0_7_45, r44, r0_7_42, r0_7_41,
-         r0_7_40, r0_7_39, r0_7_38): moved module.c to comedi_fops.c
-         merged patch
+       * Makefile, comedi/Config.in, comedi/Makefile,
+         comedi/comedi_fops.c, comedi/comedi_ksyms.c, comedi/module.c,
+         comedi/rtai.c, comedi/rtl.c, comedi/rtl_v1.c,
+         comedi/drivers/ni_mio_common.c, scripts/config.dist: moved
+         module.c to comedi_fops.c merged patch
+
+2000-02-01 22:21  tag r0_7_36
 
 2000-02-01 22:21  ds
 
-       * Changelog (tags: r0_7_39, r0_7_38), INSTALL (tags: r0_7_39,
-         r0_7_38), Makefile, NOTES (tags: r0_7_50, r0_7_49, r0_7_48,
-         r0_7_47, r0_7_46, r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40,
-         r0_7_39, r0_7_38), README (tags: r0_7_45, r44, r0_7_42, r0_7_41,
-         r0_7_40, r0_7_39, r0_7_38), Rules.make (tags: r44, r0_7_42,
-         r0_7_41, r0_7_40, r0_7_39, r0_7_38), TODO,
-         Documentation/comedi/FAQ (tags: r0_7_46, r0_7_45, r44, r0_7_42,
-         r0_7_41, r0_7_40, r0_7_39, r0_7_38),
-         Documentation/comedi/Hardware_Driver.HOWTO (tags: r0_7_59,
-         r0_7_58, r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52,
-         r0_7_51, r0_7_50, r0_7_49, r0_7_48, r0_7_47, r0_7_46, r0_7_45,
-         r44, r0_7_42, r0_7_41, r0_7_40, r0_7_39, r0_7_38),
-         Documentation/comedi/command (tags: r0_7_47, r0_7_46, r0_7_45,
-         r44, r0_7_42, r0_7_41, r0_7_40, r0_7_39, r0_7_38),
-         Documentation/comedi/drivers.txt, Documentation/comedi/mode-info
-         (tags: r0_7_61, r0_7_60, r0_7_59, r0_7_58, r0_7_57, r0_7_56,
-         r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49,
-         r0_7_48, r0_7_47, r0_7_46, r0_7_45, r44, r0_7_42, r0_7_41,
-         r0_7_40, r0_7_39, r0_7_38), Documentation/comedi/notes/README
-         (tags: r0_7_74, r0_7_73, r0_7_72, r0_7_71, branch-0_7-end,
-         branch-0_7-start, r0_7_70, r0_7_69, r0_7_67x, r0_7_66, r0_7_65,
-         r0_7_64, r0_7_63, r0_7_62, r0_7_61, r0_7_60, r0_7_59, r0_7_58,
-         r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51,
-         r0_7_50, r0_7_49, r0_7_48, r0_7_47, r0_7_46, r0_7_45, r44,
-         r0_7_42, r0_7_41, r0_7_40, r0_7_39, r0_7_38),
-         Documentation/comedi/notes/atmio_notes (tags: r0_7_74, r0_7_73,
-         r0_7_72, r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70,
-         r0_7_69, r0_7_67x, r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62,
-         r0_7_61, r0_7_60, r0_7_59, r0_7_58, r0_7_57, r0_7_56, r0_7_55,
-         r0_7_54, r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49, r0_7_48,
-         r0_7_47, r0_7_46, r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40,
-         r0_7_39, r0_7_38), Documentation/comedi/notes/das (tags: r44,
-         r0_7_42, r0_7_41, r0_7_40, r0_7_39, r0_7_38),
-         Documentation/comedi/notes/testing (tags: r0_7_74, r0_7_73,
-         r0_7_72, r0_7_71, branch-0_7-end, branch-0_7-start, r0_7_70,
-         r0_7_69, r0_7_67x, r0_7_66, r0_7_65, r0_7_64, r0_7_63, r0_7_62,
-         r0_7_61, r0_7_60, r0_7_59, r0_7_58, r0_7_57, r0_7_56, r0_7_55,
-         r0_7_54, r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49, r0_7_48,
-         r0_7_47, r0_7_46, r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40,
-         r0_7_39, r0_7_38), comedi/Config.in, comedi/Makefile,
-         comedi/am9513.h (tags: r0_7_50, r0_7_49, r0_7_48, r0_7_47,
-         r0_7_46, r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40, r0_7_39,
-         r0_7_38), comedi/comedi_ksyms.c, comedi/comedi_module.h,
-         comedi/drivers.c (tags: r0_7_39, r0_7_38), comedi/dummy.c (tags:
-         r0_7_39, r0_7_38), comedi/kern_compat.h (tags: r0_7_45, r44,
-         r0_7_42, r0_7_41, r0_7_40, r0_7_39, r0_7_38), comedi/kvmem.c
-         (tags: r0_7_49, r0_7_48, r0_7_47, r0_7_46, r0_7_45, r44, r0_7_42,
-         r0_7_41, r0_7_40, r0_7_39, r0_7_38), comedi/kvmem.h (tags:
-         r0_7_49, r0_7_48, r0_7_47, r0_7_46, r0_7_45, r44, r0_7_42,
-         r0_7_41, r0_7_40, r0_7_39, r0_7_38), comedi/mk_range.c (tags:
-         r0_7_39, r0_7_38), comedi/module.c, comedi/parport.c,
-         comedi/proc.c (tags: r0_7_39, r0_7_38), comedi/range.c (tags:
-         r0_7_39, r0_7_38), comedi/rtai.c, comedi/rtai.h, comedi/rtl.c,
-         comedi/rtl.h, comedi/rtl_v1.c, comedi/rtl_v1.h,
-         comedi/drivers/8255.c (tags: r0_7_39, r0_7_38),
-         comedi/drivers/8255.h (tags: r0_7_40, r0_7_39, r0_7_38),
-         comedi/drivers/Makefile, comedi/drivers/das08.c (tags: r0_7_39,
-         r0_7_38), comedi/drivers/das08jr.c (tags: r0_7_39, r0_7_38),
-         comedi/drivers/das16.c, comedi/drivers/das1600.c (tags: r0_7_39,
-         r0_7_38), comedi/drivers/das6402.c (tags: r0_7_39, r0_7_38),
-         comedi/drivers/dt2801.c, comedi/drivers/dt2811.c (tags: r0_7_39,
-         r0_7_38), comedi/drivers/dt2814.c (tags: r0_7_39, r0_7_38),
-         comedi/drivers/dt2815.c (tags: r0_7_39, r0_7_38),
-         comedi/drivers/dt2817.c (tags: r0_7_39, r0_7_38),
-         comedi/drivers/dt282x.c (tags: r0_7_38), comedi/drivers/dt3000.c
-         (tags: r0_7_39, r0_7_38), comedi/drivers/mite.c (tags: r44,
-         r0_7_42, r0_7_41, r0_7_40, r0_7_39, r0_7_38),
-         comedi/drivers/mite.h (tags: r44, r0_7_42, r0_7_41, r0_7_40,
-         r0_7_39, r0_7_38), comedi/drivers/multiq3.c (tags: r0_7_39,
-         r0_7_38), comedi/drivers/ni_atmio.c (tags: r0_7_39, r0_7_38),
-         comedi/drivers/ni_mio_common.c, comedi/drivers/ni_pcidio.c (tags:
-         r0_7_39, r0_7_38), comedi/drivers/ni_pcimio.c (tags: r0_7_39,
-         r0_7_38), comedi/drivers/ni_stc.h (tags: r0_7_39, r0_7_38),
-         comedi/drivers/pcl711.c (tags: r0_7_39, r0_7_38),
-         comedi/drivers/pcl725.c (tags: r0_7_39, r0_7_38),
-         comedi/drivers/pcl726.c (tags: r0_7_39, r0_7_38),
-         comedi/drivers/rti800.c (tags: r0_7_39, r0_7_38),
-         comedi/drivers/rti802.c (tags: r0_7_39, r0_7_38),
-         comedi/kcomedilib/Makefile (tags: r0_7_39, r0_7_38),
-         comedi/kcomedilib/kcomedilib.c (tags: r0_7_39, r0_7_38),
-         comedi/old/atmio-16d.c (tags: r44, r0_7_42, r0_7_41, r0_7_40,
-         r0_7_39, r0_7_38), comedi/old/atmio-16f.c (tags: r0_7_58,
-         r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51,
-         r0_7_50, r0_7_49, r0_7_48, r0_7_47, r0_7_46, r0_7_45, r44,
-         r0_7_42, r0_7_41, r0_7_40, r0_7_39, r0_7_38),
-         comedi/old/atmio-16x.c (tags: r0_7_58, r0_7_57, r0_7_56, r0_7_55,
-         r0_7_54, r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49, r0_7_48,
-         r0_7_47, r0_7_46, r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40,
-         r0_7_39, r0_7_38), comedi/old/rti860.c (tags: r0_7_58, r0_7_57,
-         r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51, r0_7_50,
-         r0_7_49, r0_7_48, r0_7_47, r0_7_46, r0_7_45, r44, r0_7_42,
-         r0_7_41, r0_7_40, r0_7_39, r0_7_38), comedi/realtime/vd_dds.c
-         (tags: r0_7_39, r0_7_38), comedi/realtime/vd_timer.c (tags:
-         r0_7_39, r0_7_38), comedi_config/Makefile (tags: r0_7_48,
-         r0_7_47, r0_7_46, r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40,
-         r0_7_39, r0_7_38), comedi_config/comedi_config.c (tags: r0_7_48,
-         r0_7_47, r0_7_46, r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40,
-         r0_7_39, r0_7_38), etc/comedi.conf (tags: r0_7_61, r0_7_60,
-         r0_7_59, r0_7_58, r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53,
-         r0_7_52, r0_7_51, r0_7_50, r0_7_49, r0_7_48, r0_7_47, r0_7_46,
-         r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40, r0_7_39, r0_7_38),
-         etc/conf.modules (tags: r0_7_39, r0_7_38), etc/das1600.conf
-         (tags: r0_7_61, r0_7_60, r0_7_59, r0_7_58, r0_7_57, r0_7_56,
-         r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49,
-         r0_7_48, r0_7_47, r0_7_46, r0_7_45, r44, r0_7_42, r0_7_41,
-         r0_7_40, r0_7_39, r0_7_38), etc/dt282x.conf (tags: r0_7_61,
-         r0_7_60, r0_7_59, r0_7_58, r0_7_57, r0_7_56, r0_7_55, r0_7_54,
-         r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49, r0_7_48, r0_7_47,
-         r0_7_46, r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40, r0_7_39,
-         r0_7_38), etc/isapnp.conf (tags: r0_7_61, r0_7_60, r0_7_59,
-         r0_7_58, r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52,
-         r0_7_51, r0_7_50, r0_7_49, r0_7_48, r0_7_47, r0_7_46, r0_7_45,
-         r44, r0_7_42, r0_7_41, r0_7_40, r0_7_39, r0_7_38),
-         include/comedi.h (tags: r0_7_39, r0_7_38), man/comedi.7 (tags:
-         r0_7_61, r0_7_60, r0_7_59, r0_7_58, r0_7_57, r0_7_56, r0_7_55,
-         r0_7_54, r0_7_53, r0_7_52, r0_7_51, r0_7_50, r0_7_49, r0_7_48,
-         r0_7_47, r0_7_46, r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40,
-         r0_7_39, r0_7_38), man/comedi_config.8 (tags: r0_7_61, r0_7_60,
-         r0_7_59, r0_7_58, r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53,
-         r0_7_52, r0_7_51, r0_7_50, r0_7_49, r0_7_48, r0_7_47, r0_7_46,
-         r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40, r0_7_39, r0_7_38),
-         scripts/Configure (tags: r0_7_47, r0_7_46, r0_7_45, r44, r0_7_42,
-         r0_7_41, r0_7_40, r0_7_39, r0_7_38), scripts/Configure.help
-         (tags: r0_7_42, r0_7_41, r0_7_40, r0_7_39, r0_7_38),
-         scripts/check_kernel (tags: r0_7_45, r44, r0_7_42, r0_7_41,
-         r0_7_40, r0_7_39, r0_7_38), scripts/config.dist,
-         scripts/config.h.dist (tags: r0_7_61, r0_7_60, r0_7_59, r0_7_58,
-         r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52, r0_7_51,
-         r0_7_50, r0_7_49, r0_7_48, r0_7_47, r0_7_46, r0_7_45, r44,
-         r0_7_42, r0_7_41, r0_7_40, r0_7_39, r0_7_38), scripts/config.in
-         (tags: r0_7_45, r44, r0_7_42, r0_7_41, r0_7_40, r0_7_39,
-         r0_7_38), scripts/pathdown.sh (tags: r0_7_69, r0_7_67x, r0_7_66,
-         r0_7_65, r0_7_64, r0_7_63, r0_7_62, r0_7_61, r0_7_60, r0_7_59,
-         r0_7_58, r0_7_57, r0_7_56, r0_7_55, r0_7_54, r0_7_53, r0_7_52,
-         r0_7_51, r0_7_50, r0_7_49, r0_7_48, r0_7_47, r0_7_46, r0_7_45,
-         r44, r0_7_42, r0_7_41, r0_7_40, r0_7_39, r0_7_38) (utags:
-         r0_7_36): Import of comedi-0.7.36.
+       * Changelog, INSTALL, Makefile, NOTES, README, Rules.make, TODO,
+         Documentation/comedi/FAQ,
+         Documentation/comedi/Hardware_Driver.HOWTO,
+         Documentation/comedi/command, Documentation/comedi/drivers.txt,
+         Documentation/comedi/mode-info,
+         Documentation/comedi/notes/README,
+         Documentation/comedi/notes/atmio_notes,
+         Documentation/comedi/notes/das,
+         Documentation/comedi/notes/testing, comedi/Config.in,
+         comedi/Makefile, comedi/am9513.h, comedi/comedi_ksyms.c,
+         comedi/comedi_module.h, comedi/drivers.c, comedi/dummy.c,
+         comedi/kern_compat.h, comedi/kvmem.c, comedi/kvmem.h,
+         comedi/mk_range.c, comedi/module.c, comedi/parport.c,
+         comedi/proc.c, comedi/range.c, comedi/rtai.c, comedi/rtai.h,
+         comedi/rtl.c, comedi/rtl.h, comedi/rtl_v1.c, comedi/rtl_v1.h,
+         comedi/drivers/8255.c, comedi/drivers/8255.h,
+         comedi/drivers/Makefile, comedi/drivers/das08.c,
+         comedi/drivers/das08jr.c, comedi/drivers/das16.c,
+         comedi/drivers/das1600.c, comedi/drivers/das6402.c,
+         comedi/drivers/dt2801.c, comedi/drivers/dt2811.c,
+         comedi/drivers/dt2814.c, comedi/drivers/dt2815.c,
+         comedi/drivers/dt2817.c, comedi/drivers/dt282x.c,
+         comedi/drivers/dt3000.c, comedi/drivers/mite.c,
+         comedi/drivers/mite.h, comedi/drivers/multiq3.c,
+         comedi/drivers/ni_atmio.c, comedi/drivers/ni_mio_common.c,
+         comedi/drivers/ni_pcidio.c, comedi/drivers/ni_pcimio.c,
+         comedi/drivers/ni_stc.h, comedi/drivers/pcl711.c,
+         comedi/drivers/pcl725.c, comedi/drivers/pcl726.c,
+         comedi/drivers/rti800.c, comedi/drivers/rti802.c,
+         comedi/kcomedilib/Makefile, comedi/kcomedilib/kcomedilib.c,
+         comedi/old/atmio-16d.c, comedi/old/atmio-16f.c,
+         comedi/old/atmio-16x.c, comedi/old/rti860.c,
+         comedi/realtime/vd_dds.c, comedi/realtime/vd_timer.c,
+         comedi_config/Makefile, comedi_config/comedi_config.c,
+         etc/comedi.conf, etc/conf.modules, etc/das1600.conf,
+         etc/dt282x.conf, etc/isapnp.conf, include/comedi.h, man/comedi.7,
+         man/comedi_config.8, scripts/Configure, scripts/Configure.help,
+         scripts/check_kernel, scripts/config.dist, scripts/config.h.dist,
+         scripts/config.in, scripts/pathdown.sh: Import of comedi-0.7.36.
 
 2000-02-01 22:21  ds