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:
parent
6c78f4ce60
commit
a503da64fd
@ -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);
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user