Re: [PATCH] br2684: don't send frames on not-ready vcc

From: David Miller
Date: Wed Nov 28 2012 - 11:41:45 EST


From: David Woodhouse <dwmw2@xxxxxxxxxxxxx>
Date: Tue, 27 Nov 2012 23:28:36 +0000

> + if (test_bit(ATM_VF_RELEASED, &atmvcc->flags)
> + || test_bit(ATM_VF_CLOSE, &atmvcc->flags)
> + || !test_bit(ATM_VF_READY, &atmvcc->flags)) {

Please:

if (X ||
Y ||
Z)

not:

if (X
|| Y
|| Z)

Thanks.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/