aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi
diff options
context:
space:
mode:
authorIan Abbott <abbotti@mev.co.uk>2013-10-02 14:57:51 +0100
committerBen Hutchings <ben@decadent.org.uk>2013-10-26 21:06:13 +0100
commit7b376352641ccc12b53a3aa555b9a477a8c0f44e (patch)
treee2486ae049e945c2d28aae70d169027f7ff34938 /drivers/acpi
parent0cf9986114ab4e16bf36a51814a0f688c79961a7 (diff)
downloadkernel_samsung_smdk4412-7b376352641ccc12b53a3aa555b9a477a8c0f44e.zip
kernel_samsung_smdk4412-7b376352641ccc12b53a3aa555b9a477a8c0f44e.tar.gz
kernel_samsung_smdk4412-7b376352641ccc12b53a3aa555b9a477a8c0f44e.tar.bz2
staging: comedi: ni_65xx: (bug fix) confine insn_bits to one subdevice
commit 677a31565692d596ef42ea589b53ba289abf4713 upstream. The `insn_bits` handler `ni_65xx_dio_insn_bits()` has a `for` loop that currently writes (optionally) and reads back up to 5 "ports" consisting of 8 channels each. It reads up to 32 1-bit channels but can only read and write a whole port at once - it needs to handle up to 5 ports as the first channel it reads might not be aligned on a port boundary. It breaks out of the loop early if the next port it handles is beyond the final port on the card. It also breaks out early on the 5th port in the loop if the first channel was aligned. Unfortunately, it doesn't check that the current port it is dealing with belongs to the comedi subdevice the `insn_bits` handler is acting on. That's a bug. Redo the `for` loop to terminate after the final port belonging to the subdevice, changing the loop variable in the process to simplify things a bit. The `for` loop could now try and handle more than 5 ports if the subdevice has more than 40 channels, but the test `if (bitshift >= 32)` ensures it will break out early after 4 or 5 ports (depending on whether the first channel is aligned on a port boundary). (`bitshift` will be between -7 and 7 inclusive on the first iteration, increasing by 8 for each subsequent operation.) Signed-off-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> [Ian Abbott: This patch applies to kernels 2.6.34.y through to 3.5.y inclusive.] Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Diffstat (limited to 'drivers/acpi')
0 files changed, 0 insertions, 0 deletions