media: ngene: Replace semaphore i2c_switch_mutex with mutex
The semaphore 'i2c_switch_mutex' is used as a simple mutex, so it should be written as one. Semaphores are going away in the future. Signed-off-by: Binoy Jayan <binoy.jayan@linaro.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
90979f0455
commit
bd7a85d363
|
@ -1345,7 +1345,7 @@ static int ngene_start(struct ngene *dev)
|
|||
mutex_init(&dev->cmd_mutex);
|
||||
mutex_init(&dev->stream_mutex);
|
||||
sema_init(&dev->pll_mutex, 1);
|
||||
sema_init(&dev->i2c_switch_mutex, 1);
|
||||
mutex_init(&dev->i2c_switch_mutex);
|
||||
spin_lock_init(&dev->cmd_lock);
|
||||
for (i = 0; i < MAX_STREAM; i++)
|
||||
spin_lock_init(&dev->channel[i].state_lock);
|
||||
|
|
|
@ -118,7 +118,7 @@ static int ngene_i2c_master_xfer(struct i2c_adapter *adapter,
|
|||
(struct ngene_channel *)i2c_get_adapdata(adapter);
|
||||
struct ngene *dev = chan->dev;
|
||||
|
||||
down(&dev->i2c_switch_mutex);
|
||||
mutex_lock(&dev->i2c_switch_mutex);
|
||||
ngene_i2c_set_bus(dev, chan->number);
|
||||
|
||||
if (num == 2 && msg[1].flags & I2C_M_RD && !(msg[0].flags & I2C_M_RD))
|
||||
|
@ -136,11 +136,11 @@ static int ngene_i2c_master_xfer(struct i2c_adapter *adapter,
|
|||
msg[0].buf, msg[0].len, 0))
|
||||
goto done;
|
||||
|
||||
up(&dev->i2c_switch_mutex);
|
||||
mutex_unlock(&dev->i2c_switch_mutex);
|
||||
return -EIO;
|
||||
|
||||
done:
|
||||
up(&dev->i2c_switch_mutex);
|
||||
mutex_unlock(&dev->i2c_switch_mutex);
|
||||
return num;
|
||||
}
|
||||
|
||||
|
|
|
@ -765,7 +765,7 @@ struct ngene {
|
|||
struct mutex cmd_mutex;
|
||||
struct mutex stream_mutex;
|
||||
struct semaphore pll_mutex;
|
||||
struct semaphore i2c_switch_mutex;
|
||||
struct mutex i2c_switch_mutex;
|
||||
int i2c_current_channel;
|
||||
int i2c_current_bus;
|
||||
spinlock_t cmd_lock;
|
||||
|
|
Loading…
Reference in New Issue