Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
98409bfd
Commit
98409bfd
authored
Nov 25, 2015
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'asoc/fix/dapm' into asoc-linus
parents
dfc956d8
1a7aaa58
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
3 deletions
+12
-3
include/sound/soc-dapm.h
include/sound/soc-dapm.h
+1
-0
sound/soc/soc-core.c
sound/soc/soc-core.c
+3
-3
sound/soc/soc-dapm.c
sound/soc/soc-dapm.c
+7
-0
sound/soc/soc-topology.c
sound/soc/soc-topology.c
+1
-0
No files found.
include/sound/soc-dapm.h
View file @
98409bfd
...
@@ -398,6 +398,7 @@ int snd_soc_dapm_del_routes(struct snd_soc_dapm_context *dapm,
...
@@ -398,6 +398,7 @@ int snd_soc_dapm_del_routes(struct snd_soc_dapm_context *dapm,
int
snd_soc_dapm_weak_routes
(
struct
snd_soc_dapm_context
*
dapm
,
int
snd_soc_dapm_weak_routes
(
struct
snd_soc_dapm_context
*
dapm
,
const
struct
snd_soc_dapm_route
*
route
,
int
num
);
const
struct
snd_soc_dapm_route
*
route
,
int
num
);
void
snd_soc_dapm_free_widget
(
struct
snd_soc_dapm_widget
*
w
);
void
snd_soc_dapm_free_widget
(
struct
snd_soc_dapm_widget
*
w
);
void
snd_soc_dapm_reset_cache
(
struct
snd_soc_dapm_context
*
dapm
);
/* dapm events */
/* dapm events */
void
snd_soc_dapm_stream_event
(
struct
snd_soc_pcm_runtime
*
rtd
,
int
stream
,
void
snd_soc_dapm_stream_event
(
struct
snd_soc_pcm_runtime
*
rtd
,
int
stream
,
...
...
sound/soc/soc-core.c
View file @
98409bfd
...
@@ -795,12 +795,12 @@ static void soc_resume_deferred(struct work_struct *work)
...
@@ -795,12 +795,12 @@ static void soc_resume_deferred(struct work_struct *work)
dev_dbg
(
card
->
dev
,
"ASoC: resume work completed
\n
"
);
dev_dbg
(
card
->
dev
,
"ASoC: resume work completed
\n
"
);
/* userspace can access us now we are back as we were before */
snd_power_change_state
(
card
->
snd_card
,
SNDRV_CTL_POWER_D0
);
/* Recheck all endpoints too, their state is affected by suspend */
/* Recheck all endpoints too, their state is affected by suspend */
dapm_mark_endpoints_dirty
(
card
);
dapm_mark_endpoints_dirty
(
card
);
snd_soc_dapm_sync
(
&
card
->
dapm
);
snd_soc_dapm_sync
(
&
card
->
dapm
);
/* userspace can access us now we are back as we were before */
snd_power_change_state
(
card
->
snd_card
,
SNDRV_CTL_POWER_D0
);
}
}
/* powers up audio subsystem after a suspend */
/* powers up audio subsystem after a suspend */
...
...
sound/soc/soc-dapm.c
View file @
98409bfd
...
@@ -2293,6 +2293,12 @@ void snd_soc_dapm_free_widget(struct snd_soc_dapm_widget *w)
...
@@ -2293,6 +2293,12 @@ void snd_soc_dapm_free_widget(struct snd_soc_dapm_widget *w)
kfree
(
w
);
kfree
(
w
);
}
}
void
snd_soc_dapm_reset_cache
(
struct
snd_soc_dapm_context
*
dapm
)
{
dapm
->
path_sink_cache
.
widget
=
NULL
;
dapm
->
path_source_cache
.
widget
=
NULL
;
}
/* free all dapm widgets and resources */
/* free all dapm widgets and resources */
static
void
dapm_free_widgets
(
struct
snd_soc_dapm_context
*
dapm
)
static
void
dapm_free_widgets
(
struct
snd_soc_dapm_context
*
dapm
)
{
{
...
@@ -2303,6 +2309,7 @@ static void dapm_free_widgets(struct snd_soc_dapm_context *dapm)
...
@@ -2303,6 +2309,7 @@ static void dapm_free_widgets(struct snd_soc_dapm_context *dapm)
continue
;
continue
;
snd_soc_dapm_free_widget
(
w
);
snd_soc_dapm_free_widget
(
w
);
}
}
snd_soc_dapm_reset_cache
(
dapm
);
}
}
static
struct
snd_soc_dapm_widget
*
dapm_find_widget
(
static
struct
snd_soc_dapm_widget
*
dapm_find_widget
(
...
...
sound/soc/soc-topology.c
View file @
98409bfd
...
@@ -1805,6 +1805,7 @@ void snd_soc_tplg_widget_remove_all(struct snd_soc_dapm_context *dapm,
...
@@ -1805,6 +1805,7 @@ void snd_soc_tplg_widget_remove_all(struct snd_soc_dapm_context *dapm,
snd_soc_tplg_widget_remove
(
w
);
snd_soc_tplg_widget_remove
(
w
);
snd_soc_dapm_free_widget
(
w
);
snd_soc_dapm_free_widget
(
w
);
}
}
snd_soc_dapm_reset_cache
(
dapm
);
}
}
EXPORT_SYMBOL_GPL
(
snd_soc_tplg_widget_remove_all
);
EXPORT_SYMBOL_GPL
(
snd_soc_tplg_widget_remove_all
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment