[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1403279435-31231-1-git-send-email-me@vincentheuken.com>
Date: Fri, 20 Jun 2014 08:50:35 -0700
From: Vincent Heuken <me@...centheuken.com>
To: perex@...ex.cz, tiwai@...e.de
Cc: alsa-devel@...a-project.org, linux-kernel@...r.kernel.org,
Vincent Heuken <me@...centheuken.com>
Subject: [PATCH] Sound: Core: fixed assignment in if condition style error in hwdep.c
This is a patch to the hwdep.c file that fixes one instance of
the following error:
ERROR: do not use assignment in if condition
It also, incidentally, fixes one instance of the following warning:
WARNING: line over 80 characters
Signed-off-by: Vincent Heuken <me@...centheuken.com>
---
sound/core/hwdep.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/sound/core/hwdep.c b/sound/core/hwdep.c
index 69459e5..42d8324 100644
--- a/sound/core/hwdep.c
+++ b/sound/core/hwdep.c
@@ -527,7 +527,9 @@ static void __init snd_hwdep_proc_init(void)
{
struct snd_info_entry *entry;
- if ((entry = snd_info_create_module_entry(THIS_MODULE, "hwdep", NULL)) != NULL) {
+ entry = snd_info_create_module_entry(THIS_MODULE, "hwdep", NULL);
+
+ if (entry != NULL) {
entry->c.text.read = snd_hwdep_proc_read;
if (snd_info_register(entry) < 0) {
snd_info_free_entry(entry);
--
2.0.0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists