staging: sm750fb: rename hwI2CReadReg to sm750_hw_i2c_read_reg
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
ed7042edaf
commit
5ccf734003
3 changed files with 3 additions and 3 deletions
|
@ -219,7 +219,7 @@ static unsigned int hwI2CReadData(
|
|||
* Return Value:
|
||||
* Register value
|
||||
*/
|
||||
unsigned char hwI2CReadReg(
|
||||
unsigned char sm750_hw_i2c_read_reg(
|
||||
unsigned char deviceAddress,
|
||||
unsigned char registerIndex
|
||||
)
|
||||
|
|
|
@ -5,6 +5,6 @@
|
|||
int sm750_hw_i2c_init(unsigned char busSpeedMode);
|
||||
void sm750_hw_i2c_close(void);
|
||||
|
||||
unsigned char hwI2CReadReg(unsigned char deviceAddress, unsigned char registerIndex);
|
||||
unsigned char sm750_hw_i2c_read_reg(unsigned char deviceAddress, unsigned char registerIndex);
|
||||
int hwI2CWriteReg(unsigned char deviceAddress, unsigned char registerIndex, unsigned char data);
|
||||
#endif
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#ifdef USE_HW_I2C
|
||||
#define i2cWriteReg hwI2CWriteReg
|
||||
#define i2cReadReg hwI2CReadReg
|
||||
#define i2cReadReg sm750_hw_i2c_read_reg
|
||||
#else
|
||||
#define i2cWriteReg swI2CWriteReg
|
||||
#define i2cReadReg swI2CReadReg
|
||||
|
|
Loading…
Reference in a new issue