mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
i2c: viperboard: 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. Remove a superfluous debug output which is already available via tracing. 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
e02ec4e15a
commit
f2005ced20
@ -1,6 +1,6 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
/*
|
/*
|
||||||
* Nano River Technologies viperboard i2c master driver
|
* Nano River Technologies viperboard i2c controller driver
|
||||||
*
|
*
|
||||||
* (C) 2012 by Lemonage GmbH
|
* (C) 2012 by Lemonage GmbH
|
||||||
* Author: Lars Poeschel <poeschel@lemonage.de>
|
* Author: Lars Poeschel <poeschel@lemonage.de>
|
||||||
@ -273,8 +273,6 @@ static int vprbrd_i2c_xfer(struct i2c_adapter *i2c, struct i2c_msg *msgs,
|
|||||||
(struct vprbrd_i2c_addr_msg *)vb->buf;
|
(struct vprbrd_i2c_addr_msg *)vb->buf;
|
||||||
struct vprbrd_i2c_status *smsg = (struct vprbrd_i2c_status *)vb->buf;
|
struct vprbrd_i2c_status *smsg = (struct vprbrd_i2c_status *)vb->buf;
|
||||||
|
|
||||||
dev_dbg(&i2c->dev, "master xfer %d messages:\n", num);
|
|
||||||
|
|
||||||
for (i = 0 ; i < num ; i++) {
|
for (i = 0 ; i < num ; i++) {
|
||||||
pmsg = &msgs[i];
|
pmsg = &msgs[i];
|
||||||
|
|
||||||
@ -345,8 +343,8 @@ static u32 vprbrd_i2c_func(struct i2c_adapter *i2c)
|
|||||||
|
|
||||||
/* This is the actual algorithm we define */
|
/* This is the actual algorithm we define */
|
||||||
static const struct i2c_algorithm vprbrd_algorithm = {
|
static const struct i2c_algorithm vprbrd_algorithm = {
|
||||||
.master_xfer = vprbrd_i2c_xfer,
|
.xfer = vprbrd_i2c_xfer,
|
||||||
.functionality = vprbrd_i2c_func,
|
.functionality = vprbrd_i2c_func,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct i2c_adapter_quirks vprbrd_quirks = {
|
static const struct i2c_adapter_quirks vprbrd_quirks = {
|
||||||
@ -460,6 +458,6 @@ static void __exit vprbrd_i2c_exit(void)
|
|||||||
module_exit(vprbrd_i2c_exit);
|
module_exit(vprbrd_i2c_exit);
|
||||||
|
|
||||||
MODULE_AUTHOR("Lars Poeschel <poeschel@lemonage.de>");
|
MODULE_AUTHOR("Lars Poeschel <poeschel@lemonage.de>");
|
||||||
MODULE_DESCRIPTION("I2C master driver for Nano River Techs Viperboard");
|
MODULE_DESCRIPTION("I2C controller driver for Nano River Techs Viperboard");
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
MODULE_ALIAS("platform:viperboard-i2c");
|
MODULE_ALIAS("platform:viperboard-i2c");
|
||||||
|
Loading…
Reference in New Issue
Block a user