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

Commit fe0219cc authored by Salil Kapur's avatar Salil Kapur Committed by Samuel Ortiz
Browse files

NFC: mei_phy: Using kfree_skb() instead of kfree()



Using kfree_skb() instead of kfree() for struct sk_buff

Signed-off-by: default avatarSalil Kapur <salilkapur93@gmail.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent c8bf40ad
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -127,7 +127,7 @@ void nfc_mei_event_cb(struct mei_cl_device *device, u32 events, void *context)

		reply_size = mei_cl_recv(device, skb->data, MEI_NFC_MAX_READ);
		if (reply_size < MEI_NFC_HEADER_SIZE) {
			kfree(skb);
			kfree_skb(skb);
			return;
		}