mirror of https://gitee.com/openkylin/linux.git
brcmfmac: Export brcmf_netif_rx for new protocol msgbuf.
Reviewed-by: Arend Van Spriel <arend@broadcom.com> Reviewed-by: Franky (Zhenhui) Lin <frankyl@broadcom.com> Reviewed-by: Pieter-Paul Giesberts <pieterpg@broadcom.com> Reviewed-by: Daniel (Deognyoun) Kim <dekim@broadcom.com> Signed-off-by: Hante Meuleman <meuleman@broadcom.com> Signed-off-by: Arend van Spriel <arend@broadcom.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
46de06839b
commit
9374a2b514
|
@ -181,6 +181,7 @@ void brcmf_txflowblock_if(struct brcmf_if *ifp,
|
||||||
enum brcmf_netif_stop_reason reason, bool state);
|
enum brcmf_netif_stop_reason reason, bool state);
|
||||||
void brcmf_txfinalize(struct brcmf_pub *drvr, struct sk_buff *txp, u8 ifidx,
|
void brcmf_txfinalize(struct brcmf_pub *drvr, struct sk_buff *txp, u8 ifidx,
|
||||||
bool success);
|
bool success);
|
||||||
|
void brcmf_netif_rx(struct brcmf_if *ifp, struct sk_buff *skb);
|
||||||
|
|
||||||
/* Sets dongle media info (drv_version, mac address). */
|
/* Sets dongle media info (drv_version, mac address). */
|
||||||
int brcmf_c_preinit_dcmds(struct brcmf_if *ifp);
|
int brcmf_c_preinit_dcmds(struct brcmf_if *ifp);
|
||||||
|
|
|
@ -288,7 +288,7 @@ void brcmf_txflowblock(struct device *dev, bool state)
|
||||||
brcmf_fws_bus_blocked(drvr, state);
|
brcmf_fws_bus_blocked(drvr, state);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void brcmf_netif_rx(struct brcmf_if *ifp, struct sk_buff *skb)
|
void brcmf_netif_rx(struct brcmf_if *ifp, struct sk_buff *skb)
|
||||||
{
|
{
|
||||||
skb->dev = ifp->ndev;
|
skb->dev = ifp->ndev;
|
||||||
skb->protocol = eth_type_trans(skb, skb->dev);
|
skb->protocol = eth_type_trans(skb, skb->dev);
|
||||||
|
|
Loading…
Reference in New Issue