Commit 2d27deb4 authored by kbuild test robot's avatar kbuild test robot Committed by Mark Brown

ASoC: rt5677: rt5677_irq_init() can be static

sound/soc/codecs/rt5677.c:4017:5: sparse: symbol 'rt5677_irq_init' was not declared. Should it be static?
sound/soc/codecs/rt5677.c:4044:6: sparse: symbol 'rt5677_irq_exit' was not declared. Should it be static?
Signed-off-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 5e3363ad
...@@ -4014,7 +4014,7 @@ static struct regmap_irq_chip rt5677_irq_chip = { ...@@ -4014,7 +4014,7 @@ static struct regmap_irq_chip rt5677_irq_chip = {
.mask_invert = 1, .mask_invert = 1,
}; };
int rt5677_irq_init(struct i2c_client *i2c) static int rt5677_irq_init(struct i2c_client *i2c)
{ {
int ret; int ret;
struct rt5677_priv *rt5677 = i2c_get_clientdata(i2c); struct rt5677_priv *rt5677 = i2c_get_clientdata(i2c);
...@@ -4041,7 +4041,7 @@ int rt5677_irq_init(struct i2c_client *i2c) ...@@ -4041,7 +4041,7 @@ int rt5677_irq_init(struct i2c_client *i2c)
return 0; return 0;
} }
void rt5677_irq_exit(struct i2c_client *i2c) static void rt5677_irq_exit(struct i2c_client *i2c)
{ {
struct rt5677_priv *rt5677 = i2c_get_clientdata(i2c); struct rt5677_priv *rt5677 = i2c_get_clientdata(i2c);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment