lkml.org 
[lkml]   [2009]   [Apr]   [9]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 07/56] coda: Remove void casts
[Added maintainer CC]
Jack Stone wrote:
> Remove uneeded void casts
>
> Signed-Off-By: Jack Stone <jwjstone@fastmail.fm>
> ---
> fs/coda/inode.c | 2 +-
> fs/coda/upcall.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/fs/coda/inode.c b/fs/coda/inode.c
> index 830f51a..a0407b3 100644
> --- a/fs/coda/inode.c
> +++ b/fs/coda/inode.c
> @@ -43,7 +43,7 @@ static struct kmem_cache * coda_inode_cachep;
> static struct inode *coda_alloc_inode(struct super_block *sb)
> {
> struct coda_inode_info *ei;
> - ei = (struct coda_inode_info *)kmem_cache_alloc(coda_inode_cachep, GFP_KERNEL);
> + ei = kmem_cache_alloc(coda_inode_cachep, GFP_KERNEL);
> if (!ei)
> return NULL;
> memset(&ei->c_fid, 0, sizeof(struct CodaFid));
> diff --git a/fs/coda/upcall.c b/fs/coda/upcall.c
> index c274d94..0f2e171 100644
> --- a/fs/coda/upcall.c
> +++ b/fs/coda/upcall.c
> @@ -59,7 +59,7 @@ static void *alloc_upcall(int opcode, int size)
>
> #define UPARG(op)\
> do {\
> - inp = (union inputArgs *)alloc_upcall(op, insize); \
> + inp = alloc_upcall(op, insize); \
> if (IS_ERR(inp)) { return PTR_ERR(inp); }\
> outp = (union outputArgs *)(inp); \
> outsize = insize; \
>



\
 
 \ /
  Last update: 2009-04-09 11:55    [W:1.095 / U:0.980 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site