未验证 提交 c15b2a1d 编写于 作者: P Peng Donglin 提交者: Mark Brown

ASoC: use DEFINE_SHOW_ATTRIBUTE() to decrease code duplication

There is some duplicate code in soc-core.c, and the kernel provides
DEFINE_SHOW_ATTRIBUTE() helper macro to decrease it in seq_file.h.
Signed-off-by: NPeng Donglin <dolinux.peng@gmail.com>
Reviewed-by: NAndy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: NMark Brown <broonie@kernel.org>
上级 7a2ccad5
...@@ -349,7 +349,7 @@ static void soc_init_codec_debugfs(struct snd_soc_component *component) ...@@ -349,7 +349,7 @@ static void soc_init_codec_debugfs(struct snd_soc_component *component)
"ASoC: Failed to create codec register debugfs file\n"); "ASoC: Failed to create codec register debugfs file\n");
} }
static int codec_list_seq_show(struct seq_file *m, void *v) static int codec_list_show(struct seq_file *m, void *v)
{ {
struct snd_soc_codec *codec; struct snd_soc_codec *codec;
...@@ -362,20 +362,9 @@ static int codec_list_seq_show(struct seq_file *m, void *v) ...@@ -362,20 +362,9 @@ static int codec_list_seq_show(struct seq_file *m, void *v)
return 0; return 0;
} }
DEFINE_SHOW_ATTRIBUTE(codec_list);
static int codec_list_seq_open(struct inode *inode, struct file *file) static int dai_list_show(struct seq_file *m, void *v)
{
return single_open(file, codec_list_seq_show, NULL);
}
static const struct file_operations codec_list_fops = {
.open = codec_list_seq_open,
.read = seq_read,
.llseek = seq_lseek,
.release = single_release,
};
static int dai_list_seq_show(struct seq_file *m, void *v)
{ {
struct snd_soc_component *component; struct snd_soc_component *component;
struct snd_soc_dai *dai; struct snd_soc_dai *dai;
...@@ -390,20 +379,9 @@ static int dai_list_seq_show(struct seq_file *m, void *v) ...@@ -390,20 +379,9 @@ static int dai_list_seq_show(struct seq_file *m, void *v)
return 0; return 0;
} }
DEFINE_SHOW_ATTRIBUTE(dai_list);
static int dai_list_seq_open(struct inode *inode, struct file *file) static int platform_list_show(struct seq_file *m, void *v)
{
return single_open(file, dai_list_seq_show, NULL);
}
static const struct file_operations dai_list_fops = {
.open = dai_list_seq_open,
.read = seq_read,
.llseek = seq_lseek,
.release = single_release,
};
static int platform_list_seq_show(struct seq_file *m, void *v)
{ {
struct snd_soc_platform *platform; struct snd_soc_platform *platform;
...@@ -416,18 +394,7 @@ static int platform_list_seq_show(struct seq_file *m, void *v) ...@@ -416,18 +394,7 @@ static int platform_list_seq_show(struct seq_file *m, void *v)
return 0; return 0;
} }
DEFINE_SHOW_ATTRIBUTE(platform_list);
static int platform_list_seq_open(struct inode *inode, struct file *file)
{
return single_open(file, platform_list_seq_show, NULL);
}
static const struct file_operations platform_list_fops = {
.open = platform_list_seq_open,
.read = seq_read,
.llseek = seq_lseek,
.release = single_release,
};
static void soc_init_card_debugfs(struct snd_soc_card *card) static void soc_init_card_debugfs(struct snd_soc_card *card)
{ {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册