From: Wei Yongjun Date: Sat, 21 Dec 2013 02:14:13 +0000 (+0800) Subject: mfd: twl6040: Fix sparse non static symbol warning X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=adc01fbd90079fe985213231c16f1ba0d3b6fdeb;p=linux-beck.git mfd: twl6040: Fix sparse non static symbol warning Fixes the following sparse warning: drivers/mfd/twl6040.c:89:20: warning: symbol 'twl6040_patch' was not declared. Should it be static? Signed-off-by: Wei Yongjun Signed-off-by: Lee Jones --- diff --git a/drivers/mfd/twl6040.c b/drivers/mfd/twl6040.c index 51b6df1a7949..75316fb33448 100644 --- a/drivers/mfd/twl6040.c +++ b/drivers/mfd/twl6040.c @@ -86,7 +86,7 @@ static struct reg_default twl6040_defaults[] = { { 0x2E, 0x00 }, /* REG_STATUS (ro) */ }; -struct reg_default twl6040_patch[] = { +static struct reg_default twl6040_patch[] = { /* Select I2C bus access to dual access registers */ { TWL6040_REG_ACCCTL, 0x09 }, };