staging: wilc1000: remove unnecessary cast
authorChengYi He <chengyihetaipei@gmail.com>
Mon, 15 Jun 2015 19:04:59 +0000 (03:04 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 16 Jun 2015 04:52:00 +0000 (21:52 -0700)
kmalloc() returns void pointer.

Signed-off-by: ChengYi He <chengyihetaipei@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/linux_mon.c
drivers/staging/wilc1000/linux_wlan.c

index d5860ce749e0666783682ecc9e9c37f88a14cff4..bc7feb459a7ae70c928644f263fd24b9cecf2219 100644 (file)
@@ -258,7 +258,7 @@ static int mon_mgmt_tx(struct net_device *dev, const u8 *buf, size_t len)
        len += sizeof(struct tx_complete_mon_data *);
        #endif
 
-       mgmt_tx->buff = (char *)kmalloc(len, GFP_ATOMIC);
+       mgmt_tx->buff = kmalloc(len, GFP_ATOMIC);
        if (mgmt_tx->buff == NULL) {
                PRINT_ER("Failed to allocate memory for mgmt_tx buff\n");
                return WILC_FAIL;
index 5f871485d973f47034a33cfc62ea3815cc13cfcf..c1e92722a4715dd4f034d9f269f47182469e26c5 100644 (file)
@@ -580,7 +580,7 @@ static void linux_wlan_dbg(uint8_t *buff)
 static void *linux_wlan_malloc_atomic(uint32_t sz)
 {
        char *pntr = NULL;
-       pntr = (char *)kmalloc(sz, GFP_ATOMIC);
+       pntr = kmalloc(sz, GFP_ATOMIC);
        PRINT_D(MEM_DBG, "Allocating %d bytes at address %p\n", sz, pntr);
        return (void *)pntr;
 
@@ -588,7 +588,7 @@ static void *linux_wlan_malloc_atomic(uint32_t sz)
 static void *linux_wlan_malloc(uint32_t sz)
 {
        char *pntr = NULL;
-       pntr = (char *)kmalloc(sz, GFP_KERNEL);
+       pntr = kmalloc(sz, GFP_KERNEL);
        PRINT_D(MEM_DBG, "Allocating %d bytes at address %p\n", sz, pntr);
        return (void *)pntr;
 }
@@ -605,7 +605,7 @@ void linux_wlan_free(void *vp)
 static void *internal_alloc(uint32_t size, uint32_t flag)
 {
        char *pntr = NULL;
-       pntr = (char *)kmalloc(size, flag);
+       pntr = kmalloc(size, flag);
        PRINT_D(MEM_DBG, "Allocating %d bytes at address %p\n", size, pntr);
        return (void *)pntr;
 }
This page took 0.027192 seconds and 5 git commands to generate.