Re: [PATCH 52/56] ufs: Remove void casts

From: Jack Stone
Date: Thu Apr 09 2009 - 06:37:55 EST


[Added maintainer CC]
Jack Stone wrote:
> Remove uneeded void casts
>
> Signed-Off-By: Jack Stone <jwjstone@xxxxxxxxxxx>
> ---
> fs/ufs/dir.c | 2 +-
> fs/ufs/super.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/fs/ufs/dir.c b/fs/ufs/dir.c
> index dbbbc46..17898e3 100644
> --- a/fs/ufs/dir.c
> +++ b/fs/ufs/dir.c
> @@ -585,7 +585,7 @@ int ufs_make_empty(struct inode * inode, struct inode *dir)
> }
>
> kmap(page);
> - base = (char*)page_address(page);
> + base = page_address(page);
> memset(base, 0, PAGE_CACHE_SIZE);
>
> de = (struct ufs_dir_entry *) base;
> diff --git a/fs/ufs/super.c b/fs/ufs/super.c
> index 6035929..2488b6d 100644
> --- a/fs/ufs/super.c
> +++ b/fs/ufs/super.c
> @@ -1304,7 +1304,7 @@ static struct kmem_cache * ufs_inode_cachep;
> static struct inode *ufs_alloc_inode(struct super_block *sb)
> {
> struct ufs_inode_info *ei;
> - ei = (struct ufs_inode_info *)kmem_cache_alloc(ufs_inode_cachep, GFP_KERNEL);
> + ei = kmem_cache_alloc(ufs_inode_cachep, GFP_KERNEL);
> if (!ei)
> return NULL;
> ei->vfs_inode.i_version = 1;
>

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/