From: Robert P. J. Day Date: Tue, 29 Apr 2008 08:03:20 +0000 (-0700) Subject: afs: use the shorter LIST_HEAD for brevity X-Git-Tag: v2.6.26-rc1~418 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0ae52d6fbaf7ffe4d00876d25ea000e94f85819c;p=thirdparty%2Fkernel%2Flinux.git afs: use the shorter LIST_HEAD for brevity Signed-off-by: Robert P. J. Day Acked-by: David Howells Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/afs/cell.c b/fs/afs/cell.c index 584bb0f9c36a3..5e1df14e16b18 100644 --- a/fs/afs/cell.c +++ b/fs/afs/cell.c @@ -20,7 +20,7 @@ DECLARE_RWSEM(afs_proc_cells_sem); LIST_HEAD(afs_proc_cells); -static struct list_head afs_cells = LIST_HEAD_INIT(afs_cells); +static LIST_HEAD(afs_cells); static DEFINE_RWLOCK(afs_cells_lock); static DECLARE_RWSEM(afs_cells_sem); /* add/remove serialisation */ static DECLARE_WAIT_QUEUE_HEAD(afs_cells_freeable_wq);