|
@@ -159,7 +159,7 @@ static int i2c_mux_trylock_bus(struct i2c_adapter *adapter, unsigned int flags)
|
|
|
return 0; /* mux_lock not locked, failure */
|
|
|
if (!(flags & I2C_LOCK_ROOT_ADAPTER))
|
|
|
return 1; /* we only want mux_lock, success */
|
|
|
- if (parent->trylock_bus(parent, flags))
|
|
|
+ if (i2c_trylock_bus(parent, flags))
|
|
|
return 1; /* parent locked too, success */
|
|
|
rt_mutex_unlock(&parent->mux_lock);
|
|
|
return 0; /* parent not locked, failure */
|
|
@@ -193,7 +193,7 @@ static int i2c_parent_trylock_bus(struct i2c_adapter *adapter,
|
|
|
|
|
|
if (!rt_mutex_trylock(&parent->mux_lock))
|
|
|
return 0; /* mux_lock not locked, failure */
|
|
|
- if (parent->trylock_bus(parent, flags))
|
|
|
+ if (i2c_trylock_bus(parent, flags))
|
|
|
return 1; /* parent locked too, success */
|
|
|
rt_mutex_unlock(&parent->mux_lock);
|
|
|
return 0; /* parent not locked, failure */
|