mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-24 19:10:20 +00:00
Current audio-graph-card functions definition are like below
(A)' static int graph_get_dais_count();
(B) int audio_graph_parse_of(...)
{
...
(A) ret = graph_get_dais_count();
...
}
(A) static int graph_get_dais_count(...)
{
...
}
(C)
We don't need to have (A)' definition if audio_graph_parse_of() (B) was
defined at (C). This patch moves (B) to (C).
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com
Link: https://lore.kernel.org/r/87r0ntmc3c.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org
|
||
|---|---|---|
| .. | ||
| audio-graph-card2-custom-sample.c | ||
| audio-graph-card2-custom-sample.dtsi | ||
| audio-graph-card2.c | ||
| audio-graph-card.c | ||
| Kconfig | ||
| Makefile | ||
| simple-card-utils.c | ||
| simple-card.c | ||
| test-component.c | ||