bpa10x: free sk_buff with kfree_skb

Inspired by Sergio Luis' similar patches, I finally found
a case which is trivial enough that spatch won't choke
on it.

Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Ilpo Järvinen and committed by David S. Miller cbafe312 a4322266

+2 -2
+2 -2
drivers/bluetooth/bpa10x.c
··· 443 443 444 444 BT_DBG("%s", hdev->name); 445 445 446 - kfree(data->rx_skb[0]); 447 - kfree(data->rx_skb[1]); 446 + kfree_skb(data->rx_skb[0]); 447 + kfree_skb(data->rx_skb[1]); 448 448 kfree(data); 449 449 } 450 450