no need for an explicit test against false
reported by Coccinelle

Reviewed-by: Takashi Iwai <ti...@suse.de>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.boss...@linux.intel.com>
---
 drivers/soundwire/bus.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/soundwire/bus.c b/drivers/soundwire/bus.c
index 423dc6d17999..863bf418e342 100644
--- a/drivers/soundwire/bus.c
+++ b/drivers/soundwire/bus.c
@@ -571,7 +571,7 @@ static int sdw_program_device_num(struct sdw_bus *bus)
                        }
                }
 
-               if (found == false) {
+               if (!found) {
                        /* TODO: Park this device in Group 13 */
                        dev_err(bus->dev, "Slave Entry not found");
                }
-- 
2.17.1

Reply via email to