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

Commit 7a2da3d4 authored by Thomas Meyer's avatar Thomas Meyer Committed by David S. Miller
Browse files

ks8*/ksz8*: Casting (void *) value returned by kmalloc is useless



The semantic patch that makes this change is available
in scripts/coccinelle/api/alloc/drop_kmalloc_cast.cocci.

Signed-off-by: default avatarThomas Meyer <thomas@m3y3r.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8524b001
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1500,8 +1500,7 @@ static int ks_hw_init(struct ks_net *ks)
	ks->all_mcast = 0;
	ks->mcast_lst_size = 0;

	ks->frame_head_info = (struct type_frame_head *) \
		kmalloc(MHEADER_SIZE, GFP_KERNEL);
	ks->frame_head_info = kmalloc(MHEADER_SIZE, GFP_KERNEL);
	if (!ks->frame_head_info) {
		pr_err("Error: Fail to allocate frame memory\n");
		return false;