mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 13:03:25 +01:00
i2c: powermac: 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
a0ea305008
commit
06b81a64c0
1 changed files with 7 additions and 7 deletions
|
@ -127,13 +127,13 @@ static s32 i2c_powermac_smbus_xfer( struct i2c_adapter* adap,
|
|||
}
|
||||
|
||||
/*
|
||||
* Generic i2c master transfer entrypoint. This driver only support single
|
||||
* Generic i2c transfer entrypoint. This driver only supports single
|
||||
* messages (for "lame i2c" transfers). Anything else should use the smbus
|
||||
* entry point
|
||||
*/
|
||||
static int i2c_powermac_master_xfer( struct i2c_adapter *adap,
|
||||
struct i2c_msg *msgs,
|
||||
int num)
|
||||
static int i2c_powermac_xfer(struct i2c_adapter *adap,
|
||||
struct i2c_msg *msgs,
|
||||
int num)
|
||||
{
|
||||
struct pmac_i2c_bus *bus = i2c_get_adapdata(adap);
|
||||
int rc = 0;
|
||||
|
@ -179,9 +179,9 @@ static u32 i2c_powermac_func(struct i2c_adapter * adapter)
|
|||
|
||||
/* For now, we only handle smbus */
|
||||
static const struct i2c_algorithm i2c_powermac_algorithm = {
|
||||
.smbus_xfer = i2c_powermac_smbus_xfer,
|
||||
.master_xfer = i2c_powermac_master_xfer,
|
||||
.functionality = i2c_powermac_func,
|
||||
.smbus_xfer = i2c_powermac_smbus_xfer,
|
||||
.xfer = i2c_powermac_xfer,
|
||||
.functionality = i2c_powermac_func,
|
||||
};
|
||||
|
||||
static const struct i2c_adapter_quirks i2c_powermac_quirks = {
|
||||
|
|
Loading…
Reference in a new issue