staging: sm750fb: rename hwI2CClose to sm750_hw_i2c_close

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:34 +03:00 committed by Greg Kroah-Hartman
parent 19f70eaedb
commit ed7042edaf
2 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@ unsigned char busSpeedMode
}
void hwI2CClose(void)
void sm750_hw_i2c_close(void)
{
unsigned int value;

View file

@ -3,7 +3,7 @@
/* hwi2c functions */
int sm750_hw_i2c_init(unsigned char busSpeedMode);
void hwI2CClose(void);
void sm750_hw_i2c_close(void);
unsigned char hwI2CReadReg(unsigned char deviceAddress, unsigned char registerIndex);
int hwI2CWriteReg(unsigned char deviceAddress, unsigned char registerIndex, unsigned char data);