mac802154: rx: remove unnecessary parameter
This patch removes a not used parameter in ieee802154_deliver_skb. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
parent
90386a7e3b
commit
08c511a733
1 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@
|
||||||
|
|
||||||
#include "ieee802154_i.h"
|
#include "ieee802154_i.h"
|
||||||
|
|
||||||
static int ieee802154_deliver_skb(struct net_device *dev, struct sk_buff *skb)
|
static int ieee802154_deliver_skb(struct sk_buff *skb)
|
||||||
{
|
{
|
||||||
skb->ip_summed = CHECKSUM_UNNECESSARY;
|
skb->ip_summed = CHECKSUM_UNNECESSARY;
|
||||||
skb->protocol = htons(ETH_P_IEEE802154);
|
skb->protocol = htons(ETH_P_IEEE802154);
|
||||||
|
@ -103,7 +103,7 @@ ieee802154_subif_frame(struct ieee802154_sub_if_data *sdata,
|
||||||
|
|
||||||
switch (mac_cb(skb)->type) {
|
switch (mac_cb(skb)->type) {
|
||||||
case IEEE802154_FC_TYPE_DATA:
|
case IEEE802154_FC_TYPE_DATA:
|
||||||
return ieee802154_deliver_skb(sdata->dev, skb);
|
return ieee802154_deliver_skb(skb);
|
||||||
default:
|
default:
|
||||||
pr_warn("ieee802154: bad frame received (type = %d)\n",
|
pr_warn("ieee802154: bad frame received (type = %d)\n",
|
||||||
mac_cb(skb)->type);
|
mac_cb(skb)->type);
|
||||||
|
|
Loading…
Add table
Reference in a new issue