staging: sm750fb: ddk750_hw_i2c: rename busSpeedMode

rename CamelCase parameter in sm750_hw_i2c_init()

Signed-off-by: Mike Rapoport <mike.rapoport@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Mike Rapoport 2015-09-12 11:07:43 +03:00 committed by Greg Kroah-Hartman
parent 6c78f4ce60
commit a503da64fd
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@
int sm750_hw_i2c_init(
unsigned char busSpeedMode
unsigned char bus_speed_mode
)
{
unsigned int value;
@ -29,7 +29,7 @@ unsigned char busSpeedMode
/* Enable the I2C Controller and set the bus speed mode */
value = PEEK32(I2C_CTRL);
if (busSpeedMode == 0)
if (bus_speed_mode == 0)
value = FIELD_SET(value, I2C_CTRL, MODE, STANDARD);
else
value = FIELD_SET(value, I2C_CTRL, MODE, FAST);

View file

@ -2,7 +2,7 @@
#define DDK750_HWI2C_H__
/* hwi2c functions */
int sm750_hw_i2c_init(unsigned char busSpeedMode);
int sm750_hw_i2c_init(unsigned char bus_speed_mode);
void sm750_hw_i2c_close(void);
unsigned char sm750_hw_i2c_read_reg(unsigned char deviceAddress, unsigned char registerIndex);