Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 8716
b: refs/heads/master
c: 074c527
h: refs/heads/master
v: v3
  • Loading branch information
Nishanth Aravamudan authored and David S. Miller committed Sep 12, 2005
1 parent 0100e90 commit 323a9b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 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: 7caaeabb17758295edff9703c18a840073c5b8f4
refs/heads/master: 074c5279ef671e4fcd2ce2960ecc9d7d9735fabd
3 changes: 1 addition & 2 deletions trunk/drivers/sbus/char/bpp.c
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,7 @@ static unsigned short get_pins(unsigned minor)

static void snooze(unsigned long snooze_time, unsigned minor)
{
set_current_state(TASK_UNINTERRUPTIBLE);
schedule_timeout(snooze_time + 1);
schedule_timeout_uninterruptible(snooze_time + 1);
}

static int wait_for(unsigned short set, unsigned short clr,
Expand Down
3 changes: 1 addition & 2 deletions trunk/drivers/sbus/char/vfc_i2c.c
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,7 @@ int vfc_pcf8584_init(struct vfc_dev *dev)

void vfc_i2c_delay_no_busy(struct vfc_dev *dev, unsigned long usecs)
{
set_current_state(TASK_UNINTERRUPTIBLE);
schedule_timeout(usecs_to_jiffies(usecs));
schedule_timeout_uninterruptible(usecs_to_jiffies(usecs));
}

void inline vfc_i2c_delay(struct vfc_dev *dev)
Expand Down

0 comments on commit 323a9b3

Please sign in to comment.