Commit 52f2eaee authored by Thierry Escande's avatar Thierry Escande Committed by Samuel Ortiz
Browse files

NFC: pn533: Fix target polling mode



Remove unneeded bitwise OR operator on uninitialized sk_buff data

Signed-off-by: default avatarThierry Escande <thierry.escande@linux.intel.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent e0af11fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1378,7 +1378,7 @@ static struct sk_buff *pn533_alloc_poll_tg_frame(struct pn533 *dev)
		return NULL;

	/* DEP support only */
	*skb_put(skb, 1) |= PN533_INIT_TARGET_DEP;
	*skb_put(skb, 1) = PN533_INIT_TARGET_DEP;

	/* MIFARE params */
	memcpy(skb_put(skb, 6), mifare_params, 6);