mirror of
https://github.com/torvalds/linux.git
synced 2026-06-05 13:06:59 +02:00
media: mceusb: set timeout to at least timeout provided
commit20b794ddceupstream. By rounding down, the actual timeout can be lower than requested. As a result, long spaces just below the requested timeout can be incorrectly reported as timeout and truncated. Fixes:877f1a7cee("media: rc: mceusb: allow the timeout to be configurable") Cc: stable@vger.kernel.org Signed-off-by: Sean Young <sean@mess.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6d725672ce
commit
bce5808fc9
|
|
@ -1077,7 +1077,7 @@ static int mceusb_set_timeout(struct rc_dev *dev, unsigned int timeout)
|
|||
struct mceusb_dev *ir = dev->priv;
|
||||
unsigned int units;
|
||||
|
||||
units = DIV_ROUND_CLOSEST(timeout, MCE_TIME_UNIT);
|
||||
units = DIV_ROUND_UP(timeout, MCE_TIME_UNIT);
|
||||
|
||||
cmdbuf[2] = units >> 8;
|
||||
cmdbuf[3] = units;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user