commit | d017c79ac750377badfa23cea73398d25dd54fe1 | [log] [tgz] |
---|---|---|
author | Jeroen Hofstee <jeroen@myspectrum.nl> | Wed Jun 11 00:34:39 2014 +0200 |
committer | Tom Rini <trini@ti.com> | Wed Jun 11 16:27:06 2014 -0400 |
tree | bb9d27256408668b37467e53763e055e48bf73a3 | |
parent | 95ab0d351cd946fd8dab4905dd6367973fa88a64 [diff] |
board:keymile: remove unnecessary double braces Clang interpretes an if condition like "if ((a = b) == NULL) as it tries to assign a value in a statement. Hence if you do "if ((something)) it warns you that you might be confused. Hence drop the double braces for plane if statements. cc: Holger Brunck <holger.brunck@keymile.com> Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>