projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cb30141
)
i2c: npcm7xx: npcm_i2caddr[] can be static
author
kernel test robot
<lkp@intel.com>
Thu, 11 Jun 2020 02:50:35 +0000
(10:50 +0800)
committer
Wolfram 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
patch
|
blob
|
history
diff --git
a/drivers/i2c/busses/i2c-npcm7xx.c
b/drivers/i2c/busses/i2c-npcm7xx.c
index
3528d30
..
75f0713
100644
(file)
--- a/
drivers/i2c/busses/i2c-npcm7xx.c
+++ b/
drivers/i2c/busses/i2c-npcm7xx.c
@@
-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,