diff options
author | Felipe Balbi <balbi@ti.com> | 2012-09-12 16:27:57 +0530 |
---|---|---|
committer | Wolfram Sang <w.sang@pengutronix.de> | 2012-09-12 15:01:59 +0200 |
commit | 2049b5bcdd2172424c1ffc9b87d8f40020e9ebd6 (patch) | |
tree | b385e53a23a5757941af39f73ba31db5de33367e /drivers/ata | |
parent | baf3d7b7210c705bf8ca7afb03cd7f0b61d27058 (diff) | |
download | op-kernel-dev-2049b5bcdd2172424c1ffc9b87d8f40020e9ebd6.zip op-kernel-dev-2049b5bcdd2172424c1ffc9b87d8f40020e9ebd6.tar.gz |
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 <balbi@ti.com>
Reviewed-by : Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: Shubhrajyoti D <shubhrajyoti@ti.com>
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
Diffstat (limited to 'drivers/ata')
0 files changed, 0 insertions, 0 deletions