staging: sm750fb: rename hwI2CInit to sm750_hw_i2c_init
Fix the checkpatch warning about CamelCase Signed-off-by: Mike Rapoport <mike.rapoport@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a03b8b3e18
commit
19f70eaedb
@ -9,7 +9,7 @@
|
||||
#define HWI2C_WAIT_TIMEOUT 0xF0000
|
||||
|
||||
|
||||
int hwI2CInit(
|
||||
int sm750_hw_i2c_init(
|
||||
unsigned char busSpeedMode
|
||||
)
|
||||
{
|
||||
|
@ -2,7 +2,7 @@
|
||||
#define DDK750_HWI2C_H__
|
||||
|
||||
/* hwi2c functions */
|
||||
int hwI2CInit(unsigned char busSpeedMode);
|
||||
int sm750_hw_i2c_init(unsigned char busSpeedMode);
|
||||
void hwI2CClose(void);
|
||||
|
||||
unsigned char hwI2CReadReg(unsigned char deviceAddress, unsigned char registerIndex);
|
||||
|
@ -130,7 +130,7 @@ long sii164InitChip(
|
||||
/* Initialize the i2c bus */
|
||||
#ifdef USE_HW_I2C
|
||||
/* Use fast mode. */
|
||||
hwI2CInit(1);
|
||||
sm750_hw_i2c_init(1);
|
||||
#else
|
||||
swI2CInit(DEFAULT_I2C_SCL, DEFAULT_I2C_SDA);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user