[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20171228230650.12973-3-loctauxphilippe@gmail.com>
Date: Fri, 29 Dec 2017 00:06:50 +0100
From: Philippe Loctaux <loctauxphilippe@...il.com>
To: gregkh@...uxfoundation.org
Cc: devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
Philippe Loctaux <loctauxphilippe@...il.com>
Subject: [PATCH 2/2] Staging: most: aim-sound: sound.c: removed unnecessary parentheses
Removed unnecessary parentheses in a if statement.
Signed-off-by: Philippe Loctaux <loctauxphilippe@...il.com>
---
drivers/staging/most/aim-sound/sound.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/most/aim-sound/sound.c b/drivers/staging/most/aim-sound/sound.c
index ab2b0d833..0e79a4898 100644
--- a/drivers/staging/most/aim-sound/sound.c
+++ b/drivers/staging/most/aim-sound/sound.c
@@ -166,7 +166,7 @@ static struct channel *get_channel(struct most_interface *iface,
struct channel *channel, *tmp;
list_for_each_entry_safe(channel, tmp, &dev_list, list) {
- if ((channel->iface == iface) && (channel->id == channel_id))
+ if (channel->iface == iface && channel->id == channel_id)
return channel;
}
--
2.15.1
Powered by blists - more mailing lists