From: David Howells Date: Tue, 28 Apr 2015 14:36:36 +0000 (+0100) Subject: crypto: testmgr - Wrap the LHS in expressions of the form !x == y X-Git-Tag: omap-for-v4.2/fixes-rc1^2~164^2~228 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09e217844a2e2d02a950bc9c129f6fe423e426e0;p=pandora-kernel.git crypto: testmgr - Wrap the LHS in expressions of the form !x == y In the test manager, there are a number of if-statements with expressions of the form !x == y that incur warnings with gcc-5 of the following form: ../crypto/testmgr.c: In function '__test_aead': ../crypto/testmgr.c:523:12: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses] if (!ret == template[i].fail) { ^ By converting the 'fail' member of struct aead_testvec and struct cipher_testvec to a bool, we can get rid of the warnings. Signed-off-by: David Howells Signed-off-by: Herbert Xu --- Reading git-diff-tree failed