projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1e75540
)
ide: use blk_run_queue() instead of blk_start_queueing()
author
Tejun Heo
<tj@kernel.org>
Sat, 18 Apr 2009 22:00:41 +0000
(07:00 +0900)
committer
Tejun Heo
<tj@kernel.org>
Sat, 18 Apr 2009 22:00:41 +0000
(07:00 +0900)
blk_start_queueing() is being phased out in favor of
[__]blk_run_queue(). Switch.
Signed-off-by: Tejun Heo <tj@kernel.org>
drivers/ide/ide-park.c
patch
|
blob
|
history
diff --git
a/drivers/ide/ide-park.c
b/drivers/ide/ide-park.c
index 310d03f2b5b793e456305547ffd3d86e036c66ca..a914023d6d035d9e530178ff2422a7bf386cc2cd 100644
(file)
--- a/
drivers/ide/ide-park.c
+++ b/
drivers/ide/ide-park.c
@@
-24,11
+24,8
@@
static void issue_park_cmd(ide_drive_t *drive, unsigned long timeout)
start_queue = 1;
spin_unlock_irq(&hwif->lock);
- if (start_queue) {
- spin_lock_irq(q->queue_lock);
- blk_start_queueing(q);
- spin_unlock_irq(q->queue_lock);
- }
+ if (start_queue)
+ blk_run_queue(q);
return;
}
spin_unlock_irq(&hwif->lock);