diff options
author | Matthias Kaehlcke <matthias.kaehlcke@gmail.com> | 2007-07-16 02:39:49 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-16 12:05:41 -0400 |
commit | 9ac162521cd9796f44d263a61090634844c719a6 (patch) | |
tree | 5988aba4299002ea4a425f747a275d29cb9dd3c5 /drivers/message/i2o/iop.c | |
parent | 1c6b4aa94576eee6dec3b8011f60d7f666db90b0 (diff) |
Use mutexes instead of semaphores in I2O driver
The I2O driver uses two semaphores as mutexes. Use the mutex API instead of
the (binary) semaphores.
Signed-off-by: Matthias Kaehlcke <matthias.kaehlcke@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/message/i2o/iop.c')
-rw-r--r-- | drivers/message/i2o/iop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/message/i2o/iop.c b/drivers/message/i2o/iop.c index 3305c12372a2..a1ec16a075c6 100644 --- a/drivers/message/i2o/iop.c +++ b/drivers/message/i2o/iop.c | |||
@@ -1067,7 +1067,7 @@ struct i2o_controller *i2o_iop_alloc(void) | |||
1067 | 1067 | ||
1068 | INIT_LIST_HEAD(&c->devices); | 1068 | INIT_LIST_HEAD(&c->devices); |
1069 | spin_lock_init(&c->lock); | 1069 | spin_lock_init(&c->lock); |
1070 | init_MUTEX(&c->lct_lock); | 1070 | mutex_init(&c->lct_lock); |
1071 | 1071 | ||
1072 | device_initialize(&c->device); | 1072 | device_initialize(&c->device); |
1073 | 1073 | ||