From: Dan Carpenter Date: Tue, 20 Aug 2013 08:54:48 +0000 (+0300) Subject: crypto: tegra-aes - bitwise vs logical and X-Git-Tag: v3.12-rc1~108^2~19 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5bc357037476bf8d4623ab4ef0d1640b947c4625;p=pandora-kernel.git crypto: tegra-aes - bitwise vs logical and The bug here is that: while (eng_busy & (!icq_empty) & dma_busy) is never true because it's using bitwise instead of logical ANDs. The other bitwise AND conditions work as intended but I changed them as well for consistency. Signed-off-by: Dan Carpenter Signed-off-by: Herbert Xu --- Reading git-diff-tree failed