From: Felipe Balbi Date: Wed, 12 Sep 2012 10:57:57 +0000 (+0530) Subject: i2c: omap: decrease indentation level on data handling X-Git-Tag: v3.7-rc1~50^2~29 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2049b5bcdd2172424c1ffc9b87d8f40020e9ebd6;p=pandora-kernel.git i2c: omap: decrease indentation level on data handling The patch intends to decrease the indentation level on the data handling by using the fact that else of if (dev->buf_len) is same as if (!dev->buf_len) if (dev->buf_len) { aaa; } else { bbb; break; } to if (!dev->buf_len) { bbb; break; } aaa; Hence no functional changes. Signed-off-by: Felipe Balbi Reviewed-by : Santosh Shilimkar Signed-off-by: Shubhrajyoti D Signed-off-by: Wolfram Sang --- Reading git-diff-tree failed