You need to sign in or sign up before continuing.
提交 7ff9288c 编写于 作者: W Wei Yongjun 提交者: Thierry Reding

drm/panel: ili9322: Make local symbols static

Fixes the following sparse warnings:

drivers/gpu/drm/panel/panel-ilitek-ili9322.c:182:12: warning:
 symbol 'ili9322_inputs' was not declared. Should it be static?
drivers/gpu/drm/panel/panel-ilitek-ili9322.c:343:28: warning:
 symbol 'ili9322_regmap_config' was not declared. Should it be static?

Also change ili9322_inputs to 'const char * const' to avoid
chackpatch warning.
Signed-off-by: NWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: NThierry Reding <treding@nvidia.com>
Link: https://patchwork.freedesktop.org/patch/msgid/1514948938-19996-1-git-send-email-weiyongjun1@huawei.com
上级 8bf7cca9
...@@ -179,7 +179,7 @@ enum ili9322_input { ...@@ -179,7 +179,7 @@ enum ili9322_input {
ILI9322_INPUT_UNKNOWN = 0xc, ILI9322_INPUT_UNKNOWN = 0xc,
}; };
const char *ili9322_inputs[] = { static const char * const ili9322_inputs[] = {
"8 bit serial RGB through", "8 bit serial RGB through",
"8 bit serial RGB aligned", "8 bit serial RGB aligned",
"8 bit serial RGB dummy 320x240", "8 bit serial RGB dummy 320x240",
...@@ -340,7 +340,7 @@ static bool ili9322_writeable_reg(struct device *dev, unsigned int reg) ...@@ -340,7 +340,7 @@ static bool ili9322_writeable_reg(struct device *dev, unsigned int reg)
return true; return true;
} }
const struct regmap_config ili9322_regmap_config = { static const struct regmap_config ili9322_regmap_config = {
.reg_bits = 8, .reg_bits = 8,
.val_bits = 8, .val_bits = 8,
.max_register = 0x44, .max_register = 0x44,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册