diff options
author | 2012-09-12 16:27:57 +0530 | |
---|---|---|
committer | 2012-09-12 15:01:59 +0200 | |
commit | 2049b5bcdd2172424c1ffc9b87d8f40020e9ebd6 (patch) | |
tree | b385e53a23a5757941af39f73ba31db5de33367e /fs/nfs/dns_resolve.c | |
parent | i2c: omap: simplify num_bytes handling (diff) | |
download | wireguard-linux-2049b5bcdd2172424c1ffc9b87d8f40020e9ebd6.tar.xz wireguard-linux-2049b5bcdd2172424c1ffc9b87d8f40020e9ebd6.zip |
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 'fs/nfs/dns_resolve.c')
0 files changed, 0 insertions, 0 deletions