1
0
Fork 0

greybus: i2c: fix name conflict between function and struct: gb_i2c_transfer_request

'gb_i2c_transfer_request' is the name given to a function and a struct. Though
we don't get any compilation errors/warnings about it, but the names should be
unique.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
hifive-unleashed-5.1
Viresh Kumar 2015-01-22 12:10:38 +05:30 committed by Greg Kroah-Hartman
parent f281f2dec1
commit 62aadeeafa
1 changed files with 3 additions and 3 deletions

View File

@ -163,8 +163,8 @@ gb_i2c_fill_transfer_op(struct gb_i2c_transfer_op *op, struct i2c_msg *msg)
}
static struct gb_operation *
gb_i2c_transfer_request(struct gb_connection *connection,
struct i2c_msg *msgs, u32 msg_count)
gb_i2c_operation_create(struct gb_connection *connection,
struct i2c_msg *msgs, u32 msg_count)
{
struct gb_i2c_transfer_request *request;
struct gb_operation *operation;
@ -264,7 +264,7 @@ static int gb_i2c_transfer_operation(struct gb_i2c_device *gb_i2c_dev,
struct gb_operation *operation;
int ret;
operation = gb_i2c_transfer_request(connection, msgs, msg_count);
operation = gb_i2c_operation_create(connection, msgs, msg_count);
if (!operation)
return -ENOMEM;