Skip to content

Commit

Permalink
ASoC: Make DAPM sysfs entries non-optional
Browse files Browse the repository at this point in the history
sysfs is so standard these days there's no point.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
  • Loading branch information
Mark Brown committed May 18, 2009
1 parent 6d3ddc8 commit aef9084
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions sound/soc/soc-dapm.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,6 @@ static int dapm_down_seq[] = {
snd_soc_dapm_post
};

static int dapm_status = 1;
module_param(dapm_status, int, 0);
MODULE_PARM_DESC(dapm_status, "enable DPM sysfs entries");

static void pop_wait(u32 pop_time)
{
if (pop_time)
Expand Down Expand Up @@ -974,16 +970,12 @@ static DEVICE_ATTR(dapm_widget, 0444, dapm_widget_show, NULL);

int snd_soc_dapm_sys_add(struct device *dev)
{
if (!dapm_status)
return 0;
return device_create_file(dev, &dev_attr_dapm_widget);
}

static void snd_soc_dapm_sys_remove(struct device *dev)
{
if (dapm_status) {
device_remove_file(dev, &dev_attr_dapm_widget);
}
device_remove_file(dev, &dev_attr_dapm_widget);
}

/* free all dapm widgets and resources */
Expand Down

0 comments on commit aef9084

Please sign in to comment.