From: David Woodhouse <dw...@infradead.org>
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 majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to