mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-27 22:53:55 +08:00
staging: sm750fb: rename swI2CInit to sm750_sw_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
ac1189513f
commit
f2ea7733dd
@ -132,7 +132,7 @@ long sii164InitChip(
|
||||
/* Use fast mode. */
|
||||
sm750_hw_i2c_init(1);
|
||||
#else
|
||||
swI2CInit(DEFAULT_I2C_SCL, DEFAULT_I2C_SDA);
|
||||
sm750_sw_i2c_init(DEFAULT_I2C_SCL, DEFAULT_I2C_SDA);
|
||||
#endif
|
||||
|
||||
/* Check if SII164 Chip exists */
|
||||
|
@ -386,7 +386,7 @@ static long swI2CInit_SM750LE(unsigned char i2cClkGPIO,
|
||||
* -1 - Fail to initialize the i2c
|
||||
* 0 - Success
|
||||
*/
|
||||
long swI2CInit(
|
||||
long sm750_sw_i2c_init(
|
||||
unsigned char i2cClkGPIO,
|
||||
unsigned char i2cDataGPIO
|
||||
)
|
||||
|
@ -28,7 +28,7 @@
|
||||
* -1 - Fail to initialize the i2c
|
||||
* 0 - Success
|
||||
*/
|
||||
long swI2CInit(
|
||||
long sm750_sw_i2c_init(
|
||||
unsigned char i2cClkGPIO,
|
||||
unsigned char i2cDataGPIO
|
||||
);
|
||||
|
@ -169,7 +169,7 @@ int hw_sm750_inithw(struct lynx_share *share, struct pci_dev *pdev)
|
||||
/* Set up GPIO for software I2C to program DVI chip in the
|
||||
Xilinx SP605 board, in order to have video signal.
|
||||
*/
|
||||
swI2CInit(0, 1);
|
||||
sm750_sw_i2c_init(0, 1);
|
||||
|
||||
|
||||
/* Customer may NOT use CH7301 DVI chip, which has to be
|
||||
|
Loading…
Reference in New Issue
Block a user