projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a33c0d1
)
ASoC: soc-core: soc_cleanup_card_resources() become void
author
Kuninori Morimoto
<kuninori.morimoto.gx@renesas.com>
Tue, 20 Aug 2019 05:05:10 +0000
(14:05 +0900)
committer
Mark Brown
<broonie@kernel.org>
Thu, 22 Aug 2019 17:30:00 +0000
(18:30 +0100)
There is no need to check return value for
soc_cleanup_card_resources(). Let't makes it as void.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Link:
https://lore.kernel.org/r/871rxg1lda.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/soc-core.c
patch
|
blob
|
history
diff --git
a/sound/soc/soc-core.c
b/sound/soc/soc-core.c
index 0ed6576bfef476c6ce8d83864428bad53da12ac4..1be069c2ac8ded62f969de3aced094526317c126 100644
(file)
--- a/
sound/soc/soc-core.c
+++ b/
sound/soc/soc-core.c
@@
-1885,7
+1885,7
@@
match:
}
}
-static
int
soc_cleanup_card_resources(struct snd_soc_card *card)
+static
void
soc_cleanup_card_resources(struct snd_soc_card *card)
{
/* free the ALSA card at first; this syncs with pending operations */
if (card->snd_card) {
@@
-1906,8
+1906,6
@@
static int soc_cleanup_card_resources(struct snd_soc_card *card)
/* remove the card */
if (card->remove)
card->remove(card);
-
- return 0;
}
static int snd_soc_instantiate_card(struct snd_soc_card *card)