forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'staging-linus' of git://git.kernel.org/pub/scm/linux/ke…
…rnel/git/gregkh/staging * 'staging-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging: Staging: comedi: fix integer overflow in do_insnlist_ioctl() Revert "Staging: comedi: integer overflow in do_insnlist_ioctl()" Staging: comedi: integer overflow in do_insnlist_ioctl() Staging: comedi: fix signal handling in read and write Staging: comedi: fix mmap_count staging: comedi: fix oops for USB DAQ devices. staging: comedi: usbduxsigma: Fixed wrong range for the analogue channel. staging:rts_pstor:Complete scanning_done variable staging: usbip: bugfix for deadlock
- Loading branch information
Showing
4 changed files
with
84 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#define DRIVER_VERSION "v0.5" | ||
#define DRIVER_VERSION "v0.6" | ||
#define DRIVER_AUTHOR "Bernd Porr, [email protected]" | ||
#define DRIVER_DESC "Stirling/ITL USB-DUX SIGMA -- [email protected]" | ||
/* | ||
|
@@ -25,7 +25,7 @@ Driver: usbduxsigma | |
Description: University of Stirling USB DAQ & INCITE Technology Limited | ||
Devices: [ITL] USB-DUX (usbduxsigma.o) | ||
Author: Bernd Porr <[email protected]> | ||
Updated: 21 Jul 2011 | ||
Updated: 8 Nov 2011 | ||
Status: testing | ||
*/ | ||
/* | ||
|
@@ -44,6 +44,7 @@ Status: testing | |
* 0.3: proper vendor ID and driver name | ||
* 0.4: fixed D/A voltage range | ||
* 0.5: various bug fixes, health check at startup | ||
* 0.6: corrected wrong input range | ||
*/ | ||
|
||
/* generates loads of debug info */ | ||
|
@@ -175,7 +176,7 @@ Status: testing | |
/* comedi constants */ | ||
static const struct comedi_lrange range_usbdux_ai_range = { 1, { | ||
BIP_RANGE | ||
(2.65) | ||
(2.65/2.0) | ||
} | ||
}; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters