Skip to content

Commit 44b6826

Browse files
ThePlasticAgeWolfram Sang
authored andcommitted
i2c: Fix whitespace style issue
This patch fixes a coding style issue in the alignment of parameters in the function i2c_smbus_write_bytes(). It replaces spaces with tabs for alignment, as per the coding style guidelines. Signed-off-by: Liam Zuiderhoek <[email protected]> Signed-off-by: Wolfram Sang <[email protected]>
1 parent aac9e2a commit 44b6826

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/i2c/i2c-core-smbus.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ EXPORT_SYMBOL(i2c_smbus_read_byte);
122122
s32 i2c_smbus_write_byte(const struct i2c_client *client, u8 value)
123123
{
124124
return i2c_smbus_xfer(client->adapter, client->addr, client->flags,
125-
I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
125+
I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
126126
}
127127
EXPORT_SYMBOL(i2c_smbus_write_byte);
128128

0 commit comments

Comments
 (0)