Tag: 44209c93299efbc84eb8c29827b3132bf06f7e42

staging: dgap: remove unnecessary brackets

Author: Ioana Ciornei <ciorneiioana@gmail.com> This patch removes unnecessary brackets when dealing with unary operators like ‘&’. Done with coccinelle semantic patch: @@ expression e; @@ ( – &(e) + &e ) Signed-off-by: Ioana Ciornei Signed-off-by: Greg Kroah-Hartman — drivers/staging/dgap/dgap.c | 190 ++++++++++++++++++++++———————- 1 file changed, 95 insertions(+), 95 deletions(-)   diff –git a/drivers/staging/dgap/dgap.c b/drivers/staging/dgap/dgap.c index …

Continue reading