alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ASoC: core: No need to use strncmp()
@ 2013-07-31  8:44 Dimitris Papastamos
  2013-07-31  9:07 ` Mark Brown
  0 siblings, 1 reply; 6+ messages in thread
From: Dimitris Papastamos @ 2013-07-31  8:44 UTC (permalink / raw)
  To: Mark Brown; +Cc: alsa-devel, patches

Signed-off-by: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
---
 sound/soc/soc-core.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index d68a486..9f60894 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -2309,7 +2309,7 @@ struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
 		return NULL;
 
 	list_for_each_entry(kctl, &card->controls, list)
-		if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name)))
+		if (!strcmp(kctl->id.name, name))
 			return kctl;
 	return NULL;
 }
@@ -3056,7 +3056,7 @@ int snd_soc_limit_volume(struct snd_soc_codec *codec,
 		return -EINVAL;
 
 	list_for_each_entry(kctl, &card->controls, list) {
-		if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) {
+		if (!strcmp(kctl->id.name, name)) {
 			found = 1;
 			break;
 		}
-- 
1.8.3.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-07-31 13:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-31  8:44 [PATCH] ASoC: core: No need to use strncmp() Dimitris Papastamos
2013-07-31  9:07 ` Mark Brown
2013-07-31  9:48   ` Dimitris Papastamos
2013-07-31 11:01     ` Mark Brown
2013-07-31 11:59       ` Dimitris Papastamos
2013-07-31 13:23         ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).