aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rts5139
diff options
context:
space:
mode:
authorMarcus Overhagen <marcus.overhagen@gmail.com>2013-06-03 20:14:01 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-06-03 12:15:34 -0700
commitc5c141dfe737706d8bd57f40b4a9a8818c5ce4de (patch)
treee496a1c264778acfe4a50242713740a9622df6f9 /drivers/staging/rts5139
parentstaging/lustre: fix return value check in libcfs_sock_ioctl() (diff)
downloadlinux-dev-c5c141dfe737706d8bd57f40b4a9a8818c5ce4de.tar.xz
linux-dev-c5c141dfe737706d8bd57f40b4a9a8818c5ce4de.zip
staging: rts5139: Fix SD card detection on Samsung NP730U3E Ultrabook
The timeout detection implemented in this driver isn't very robust. Although the USB interrupt transfer was successful, the polling thread often reported timeouts because the 50ms had expired before it got scheduled, and the SD card wasn't detected. Increasing it to 100ms, as used in other places of this driver, makes it work. Signed-off-by: Marcus Overhagen <marcus.overhagen@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rts5139')
-rw-r--r--drivers/staging/rts5139/rts51x_transport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rts5139/rts51x_transport.c b/drivers/staging/rts5139/rts51x_transport.c
index 89e4d805a345..c573618051e6 100644
--- a/drivers/staging/rts5139/rts51x_transport.c
+++ b/drivers/staging/rts5139/rts51x_transport.c
@@ -640,7 +640,7 @@ int rts51x_get_epc_status(struct rts51x_chip *chip, u16 *status)
usb_fill_int_urb(chip->usb->intr_urb, chip->usb->pusb_dev, pipe,
status, 2, urb_done_completion, &urb_done, 1);
- result = rts51x_msg_common(chip, chip->usb->intr_urb, 50);
+ result = rts51x_msg_common(chip, chip->usb->intr_urb, 100);
return interpret_urb_result(chip, pipe, 2, result,
chip->usb->intr_urb->actual_length);