Commit 69eb1a0d authored by Tabrez khan's avatar Tabrez khan Committed by Greg Kroah-Hartman
Browse files

staging : lustre : Remove braces from single-line body.



Remove unnecessary braces {} for single while statement.
This warning is found using checkpatch.pl.

Signed-off-by: default avatarTabrez khan <khan.tabrez21@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 364139d3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1119,9 +1119,9 @@ int cl_sync_io_wait(const struct lu_env *env, struct cl_sync_io *anchor,
	LASSERT(atomic_read(&anchor->csi_sync_nr) == 0);

	/* wait until cl_sync_io_note() has done wakeup */
	while (unlikely(atomic_read(&anchor->csi_barrier) != 0)) {
	while (unlikely(atomic_read(&anchor->csi_barrier) != 0))
		cpu_relax();
	}


	return rc;
}