mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
i2c: rzv2m: reword according to newest specification
Change the wording of this driver wrt. the newest I2C v7 and SMBus 3.2 specifications and replace "master/slave" with more appropriate terms. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Reviewed-by: Andi Shyti <andi.shyti@kernel.org> Signed-off-by: Andi Shyti <andi.shyti@kernel.org>
This commit is contained in:
parent
fd4b7e03d6
commit
39a6695f0e
@ -321,8 +321,8 @@ static int rzv2m_i2c_stop_condition(struct rzv2m_i2c_priv *priv)
|
||||
100, jiffies_to_usecs(priv->adap.timeout));
|
||||
}
|
||||
|
||||
static int rzv2m_i2c_master_xfer_msg(struct rzv2m_i2c_priv *priv,
|
||||
struct i2c_msg *msg, int stop)
|
||||
static int rzv2m_i2c_xfer_msg(struct rzv2m_i2c_priv *priv,
|
||||
struct i2c_msg *msg, int stop)
|
||||
{
|
||||
unsigned int count = 0;
|
||||
int ret, read = !!(msg->flags & I2C_M_RD);
|
||||
@ -351,8 +351,8 @@ static int rzv2m_i2c_master_xfer_msg(struct rzv2m_i2c_priv *priv,
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int rzv2m_i2c_master_xfer(struct i2c_adapter *adap,
|
||||
struct i2c_msg *msgs, int num)
|
||||
static int rzv2m_i2c_xfer(struct i2c_adapter *adap,
|
||||
struct i2c_msg *msgs, int num)
|
||||
{
|
||||
struct rzv2m_i2c_priv *priv = i2c_get_adapdata(adap);
|
||||
struct device *dev = priv->adap.dev.parent;
|
||||
@ -370,7 +370,7 @@ static int rzv2m_i2c_master_xfer(struct i2c_adapter *adap,
|
||||
|
||||
/* I2C main transfer */
|
||||
for (i = 0; i < num; i++) {
|
||||
ret = rzv2m_i2c_master_xfer_msg(priv, &msgs[i], i == (num - 1));
|
||||
ret = rzv2m_i2c_xfer_msg(priv, &msgs[i], i == (num - 1));
|
||||
if (ret < 0)
|
||||
goto out;
|
||||
}
|
||||
@ -408,7 +408,7 @@ static const struct i2c_adapter_quirks rzv2m_i2c_quirks = {
|
||||
};
|
||||
|
||||
static struct i2c_algorithm rzv2m_i2c_algo = {
|
||||
.master_xfer = rzv2m_i2c_master_xfer,
|
||||
.xfer = rzv2m_i2c_xfer,
|
||||
.functionality = rzv2m_i2c_func,
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user