diff options
author | Yanchuan Nian <ycnian@gmail.com> | 2012-09-09 20:40:16 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-10-01 18:40:03 -0400 |
commit | ee34e13620d0678d420ce50101aaef94ab81fc74 (patch) | |
tree | b5247dd8ac424057f126c20c19f25e7a497dc52a /fs/nfs | |
parent | 4e266229dbb0782d91b75633322edd632794b86d (diff) |
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 <ycnian@gmail.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfs/client.c b/fs/nfs/client.c index bab3e8af574a..8b39a42ac35e 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) | |||
93 | spin_unlock(&nfs_version_lock); | 93 | spin_unlock(&nfs_version_lock); |
94 | return nfs; | 94 | return nfs; |
95 | } | 95 | } |
96 | }; | 96 | } |
97 | 97 | ||
98 | spin_unlock(&nfs_version_lock); | 98 | spin_unlock(&nfs_version_lock); |
99 | return ERR_PTR(-EPROTONOSUPPORT);; | 99 | return ERR_PTR(-EPROTONOSUPPORT); |
100 | } | 100 | } |
101 | 101 | ||
102 | struct nfs_subversion *get_nfs_version(unsigned int version) | 102 | struct nfs_subversion *get_nfs_version(unsigned int version) |