ssb: return boolean instead of integer in ssb_dma_translation_special_bit
authorGustavo A. R. Silva <garsilva@embeddedor.com>
Thu, 18 Jan 2018 23:54:28 +0000 (17:54 -0600)
committerKalle Valo <kvalo@codeaurora.org>
Tue, 27 Feb 2018 16:14:11 +0000 (18:14 +0200)
Return statements in functions returning bool should use
true/false instead of 1/0.

This issue was detected with the help of Coccinelle.

Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/ssb/main.c

index 65420a9..fdb89b6 100644 (file)
@@ -1116,7 +1116,7 @@ static bool ssb_dma_translation_special_bit(struct ssb_device *dev)
                        chip_id == 43231 || chip_id == 43222);
        }
 
-       return 0;
+       return false;
 }
 
 u32 ssb_dma_translation(struct ssb_device *dev)