mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-24 05:01:03 +02:00
nfs: remove unnecessary (void*) conversions.
remove unnecessary void* type castings. Signed-off-by: yuzhe <yuzhe@nfschina.com> Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
This commit is contained in:
@@ -318,7 +318,7 @@ struct nfs_find_desc {
|
||||
static int
|
||||
nfs_find_actor(struct inode *inode, void *opaque)
|
||||
{
|
||||
struct nfs_find_desc *desc = (struct nfs_find_desc *)opaque;
|
||||
struct nfs_find_desc *desc = opaque;
|
||||
struct nfs_fh *fh = desc->fh;
|
||||
struct nfs_fattr *fattr = desc->fattr;
|
||||
|
||||
@@ -336,7 +336,7 @@ nfs_find_actor(struct inode *inode, void *opaque)
|
||||
static int
|
||||
nfs_init_locked(struct inode *inode, void *opaque)
|
||||
{
|
||||
struct nfs_find_desc *desc = (struct nfs_find_desc *)opaque;
|
||||
struct nfs_find_desc *desc = opaque;
|
||||
struct nfs_fattr *fattr = desc->fattr;
|
||||
|
||||
set_nfs_fileid(inode, fattr->fileid);
|
||||
@@ -2271,7 +2271,7 @@ static inline void nfs4_init_once(struct nfs_inode *nfsi)
|
||||
|
||||
static void init_once(void *foo)
|
||||
{
|
||||
struct nfs_inode *nfsi = (struct nfs_inode *) foo;
|
||||
struct nfs_inode *nfsi = foo;
|
||||
|
||||
inode_init_once(&nfsi->vfs_inode);
|
||||
INIT_LIST_HEAD(&nfsi->open_files);
|
||||
|
Reference in New Issue
Block a user