Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 39805
b: refs/heads/master
c: 531a39b
h: refs/heads/master
i:
  39803: 4e457b6
v: v3
  • Loading branch information
matthieu castet authored and Greg Kroah-Hartman committed Oct 17, 2006
1 parent 1e02094 commit 8c2b67a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9ca5346483ea2c2e8932268246d1d8746fe3bcaa
refs/heads/master: 531a39bbab213209a9914e68809bcf8b60a54f47
6 changes: 3 additions & 3 deletions trunk/drivers/usb/atm/ueagle-atm.c
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ static inline void wake_up_cmv_ack(struct uea_softc *sc)

static inline int wait_cmv_ack(struct uea_softc *sc)
{
int ret = wait_event_timeout(sc->cmv_ack_wait,
int ret = wait_event_interruptible_timeout(sc->cmv_ack_wait,
sc->cmv_ack, ACK_TIMEOUT);
sc->cmv_ack = 0;

Expand Down Expand Up @@ -1172,7 +1172,7 @@ static int uea_kthread(void *data)
if (!ret)
ret = uea_stat(sc);
if (ret != -EAGAIN)
msleep(1000);
msleep_interruptible(1000);
if (try_to_freeze())
uea_err(INS_TO_USBDEV(sc), "suspend/resume not supported, "
"please unplug/replug your modem\n");
Expand Down Expand Up @@ -1600,7 +1600,7 @@ static int uea_heavy(struct usbatm_data *usbatm, struct usb_interface *intf)
{
struct uea_softc *sc = usbatm->driver_data;

wait_event(sc->sync_q, IS_OPERATIONAL(sc));
wait_event_interruptible(sc->sync_q, IS_OPERATIONAL(sc));

return 0;

Expand Down

0 comments on commit 8c2b67a

Please sign in to comment.