net: Move && and || to end of previous line
Not including net/atm/ Compiled tested x86 allyesconfig only Added a > 80 column line or two, which I ignored. Existing checkpatch plaints willfully, cheerfully ignored. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
152b6a62ae
commit
f64f9e7192
@@ -105,8 +105,8 @@ static int rsi_match(struct cache_head *a, struct cache_head *b)
|
||||
{
|
||||
struct rsi *item = container_of(a, struct rsi, h);
|
||||
struct rsi *tmp = container_of(b, struct rsi, h);
|
||||
return netobj_equal(&item->in_handle, &tmp->in_handle)
|
||||
&& netobj_equal(&item->in_token, &tmp->in_token);
|
||||
return netobj_equal(&item->in_handle, &tmp->in_handle) &&
|
||||
netobj_equal(&item->in_token, &tmp->in_token);
|
||||
}
|
||||
|
||||
static int dup_to_netobj(struct xdr_netobj *dst, char *src, int len)
|
||||
|
||||
Reference in New Issue
Block a user