Commit ee34e136 authored by Yanchuan Nian's avatar Yanchuan Nian Committed by Trond Myklebust
Browse files

NFS: Remove unnecessary semicolons (fs/nfs/client.c)



There are some unnecessary semicolons in function find_nfs_version. Just remove them.

Signed-off-by: default avatarYanchuan Nian <ycnian@gmail.com>
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent 4e266229
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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)