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:
Mike Rapoport 2015-09-12 11:07:33 +03:00 committed by Greg Kroah-Hartman
parent a03b8b3e18
commit 19f70eaedb
3 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@
#define HWI2C_WAIT_TIMEOUT 0xF0000
int hwI2CInit(
int sm750_hw_i2c_init(
unsigned char busSpeedMode
)
{

View file

@ -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);

View file

@ -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