[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <faf86e8b389bbc43ea531a1eadcda5ce4694ac0a.1187912217.git.jesper.juhl@gmail.com>
Date: Fri, 24 Aug 2007 02:11:03 +0200
From: Jesper Juhl <jesper.juhl@...il.com>
To: Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Cc: Karsten Keil <kkeil@...e.de>,
Kai Germaschewski <kai.germaschewski@....de>,
isdn4linux@...tserv.isdn4linux.de,
Armin Schindler <mac@...ware.de>,
Jesper Juhl <jesper.juhl@...il.com>
Subject: [PATCH 18/30] isdn: eicon - get rid of a pointless vmalloc() return value cast
vmalloc() returns void*.
No need to cast in drivers/isdn/hardware/eicon/platform.h::diva_os_malloc()
Signed-off-by: Jesper Juhl <jesper.juhl@...il.com>
---
drivers/isdn/hardware/eicon/platform.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/isdn/hardware/eicon/platform.h b/drivers/isdn/hardware/eicon/platform.h
index 15d4942..8756ef1 100644
--- a/drivers/isdn/hardware/eicon/platform.h
+++ b/drivers/isdn/hardware/eicon/platform.h
@@ -167,7 +167,7 @@ static __inline__ void* diva_os_malloc (unsigned long flags, unsigned long size)
void *ret = NULL;
if (size) {
- ret = (void *) vmalloc((unsigned int) size);
+ ret = vmalloc((unsigned int)size);
}
return (ret);
}
--
1.5.2.2
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists