Declare an I2C bus name string as a static type for lg_i2c.c

Signed-off-by: Kevin Brace <kevinbrace@gmx.com>
This commit is contained in:
Kevin Brace
2019-07-17 19:54:09 -07:00
parent ad8486b4e9
commit d5f71611d9

View File

@@ -16,6 +16,11 @@
#define _LG_PRIVATE_
#include "lg.h"
static char strI2CBus1[] = "I2C bus 1";
static char strI2CBus2[] = "I2C bus 2";
static void
LgI2CPutBits(I2CBusPtr b, int clock, int data)
{
@@ -75,7 +80,7 @@ LgI2CInit(ScrnInfoPtr pScrn)
pCir->I2CPtr1 = I2CPtr;
I2CPtr->BusName = "I2C bus 1";
I2CPtr->BusName = strI2CBus1;
I2CPtr->scrnIndex = pScrn->scrnIndex;
I2CPtr->I2CPutBits = LgI2CPutBits;
I2CPtr->I2CGetBits = LgI2CGetBits;
@@ -90,7 +95,7 @@ LgI2CInit(ScrnInfoPtr pScrn)
pCir->I2CPtr2 = I2CPtr;
I2CPtr->BusName = "I2C bus 2";
I2CPtr->BusName = strI2CBus2;
I2CPtr->scrnIndex = pScrn->scrnIndex;
I2CPtr->I2CPutBits = LgI2CPutBits;
I2CPtr->I2CGetBits = LgI2CGetBits;