[PATCH xf86-video-cirrus] Declare an I2C bus name string as a static type for lg_i2c.c
Kevin Brace
kevinbrace at gmx.com
Thu Jul 18 02:54:09 UTC 2019
Signed-off-by: Kevin Brace <kevinbrace at gmx.com>
---
src/lg_i2c.c | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/src/lg_i2c.c b/src/lg_i2c.c
index f4894bd..44387ff 100644
--- a/src/lg_i2c.c
+++ b/src/lg_i2c.c
@@ -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;
--
2.17.1
More information about the xorg-devel
mailing list