Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 655b4d16 authored by Jesper Juhl's avatar Jesper Juhl Committed by David S. Miller
Browse files

[PATCH] net: Kill some unneeded allocation return value casts in libertas



kmalloc() and friends return void*, no need to cast it.

Signed-off-by: default avatarJesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 4b04f196
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1838,7 +1838,7 @@ static ssize_t wlan_debugfs_write(struct file *f, const char __user *buf,
	char *p2;
	struct debug_data *d = (struct debug_data *)f->private_data;

	pdata = (char *)kmalloc(cnt, GFP_KERNEL);
	pdata = kmalloc(cnt, GFP_KERNEL);
	if (pdata == NULL)
		return 0;

+1 −2
Original line number Diff line number Diff line
@@ -60,8 +60,7 @@ static int libertas_ethtool_get_eeprom(struct net_device *dev,

//      mutex_lock(&priv->mutex);

	adapter->prdeeprom =
		    (char *)kmalloc(eeprom->len+sizeof(regctrl), GFP_KERNEL);
	adapter->prdeeprom = kmalloc(eeprom->len+sizeof(regctrl), GFP_KERNEL);
	if (!adapter->prdeeprom)
		return -ENOMEM;
	memcpy(adapter->prdeeprom, &regctrl, sizeof(regctrl));