i2c: npcm7xx: npcm_i2caddr[] can be static
authorkernel test robot <lkp@intel.com>
Thu, 11 Jun 2020 02:50:35 +0000 (10:50 +0800)
committerWolfram Sang <wsa@kernel.org>
Thu, 11 Jun 2020 10:30:47 +0000 (12:30 +0200)
Fixes: f54736925a4f ("i2c: npcm7xx: Add support for slave mode for Nuvoton")
Signed-off-by: kernel test robot <lkp@intel.com>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
drivers/i2c/busses/i2c-npcm7xx.c

index 3528d30..75f0713 100644 (file)
@@ -124,7 +124,7 @@ enum i2c_addr {
  * use this array to get the address or each register.
  */
 #define I2C_NUM_OWN_ADDR 10
-const int npcm_i2caddr[I2C_NUM_OWN_ADDR] = {
+static const int npcm_i2caddr[I2C_NUM_OWN_ADDR] = {
        NPCM_I2CADDR1, NPCM_I2CADDR2, NPCM_I2CADDR3, NPCM_I2CADDR4,
        NPCM_I2CADDR5, NPCM_I2CADDR6, NPCM_I2CADDR7, NPCM_I2CADDR8,
        NPCM_I2CADDR9, NPCM_I2CADDR10,