From: Jiayi Ye Date: Sat, 25 Oct 2014 02:58:28 +0000 (+0800) Subject: staging: remove unneeded parentheses around the right hand side of an assignment X-Git-Tag: omap-for-v3.19/fixes-rc1~73^2~1023 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d06bb4e9df30162d8690a26792611a141676279;p=pandora-kernel.git staging: remove unneeded parentheses around the right hand side of an assignment In assignments such as value = (FLASH_CMD_STATUS_REG_READ << 24);, parentheses are not needed. The Coccinelle semantic patch was used to find cases. @r@ identifier x; expression e1, e2; @@ - x = (e1 << e2); + x = e1 << e2; Signed-off-by: Jiayi Ye Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed