From: Yanchuan Nian Date: Mon, 10 Sep 2012 00:40:16 +0000 (+0800) Subject: NFS: Remove unnecessary semicolons (fs/nfs/client.c) X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=ee34e13620d0678d420ce50101aaef94ab81fc74;p=linux-edison.git NFS: Remove unnecessary semicolons (fs/nfs/client.c) There are some unnecessary semicolons in function find_nfs_version. Just remove them. Signed-off-by: Yanchuan Nian Signed-off-by: Trond Myklebust --- diff --git a/fs/nfs/client.c b/fs/nfs/client.c index bab3e8af574..8b39a42ac35 100644 --- a/fs/nfs/client.c +++ b/fs/nfs/client.c @@ -93,10 +93,10 @@ static struct nfs_subversion *find_nfs_version(unsigned int version) spin_unlock(&nfs_version_lock); return nfs; } - }; + } spin_unlock(&nfs_version_lock); - return ERR_PTR(-EPROTONOSUPPORT);; + return ERR_PTR(-EPROTONOSUPPORT); } struct nfs_subversion *get_nfs_version(unsigned int version)