Commit 228bb43d authored by Franky Lin's avatar Franky Lin Committed by John W. Linville

brcm80211: fmac: change function rx_frame parameter

Change parameter to device pointer for bus layer interface function
brcmf_rx_frame. This is part of the fullmac bus interface
refactoring.
Reviewed-by: default avatarPieter-Paul Giesberts <pieterpg@broadcom.com>
Reviewed-by: default avatarArend van Spriel <arend@broadcom.com>
Reviewed-by: default avatarAlwin Beukers <alwin@broadcom.com>
Signed-off-by: default avatarFranky Lin <frankyl@broadcom.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent b63487ed
...@@ -712,16 +712,16 @@ extern bool brcmf_c_prec_enq(struct device *dev, struct pktq *q, ...@@ -712,16 +712,16 @@ extern bool brcmf_c_prec_enq(struct device *dev, struct pktq *q,
struct sk_buff *pkt, int prec); struct sk_buff *pkt, int prec);
/* Receive frame for delivery to OS. Callee disposes of rxp. */ /* Receive frame for delivery to OS. Callee disposes of rxp. */
extern void brcmf_rx_frame(struct brcmf_pub *drvr, int ifidx, extern void brcmf_rx_frame(struct device *dev, int ifidx,
struct sk_buff_head *rxlist); struct sk_buff_head *rxlist);
static inline void brcmf_rx_packet(struct brcmf_pub *drvr, int ifidx, static inline void brcmf_rx_packet(struct device *dev, int ifidx,
struct sk_buff *pkt) struct sk_buff *pkt)
{ {
struct sk_buff_head q; struct sk_buff_head q;
skb_queue_head_init(&q); skb_queue_head_init(&q);
skb_queue_tail(&q, pkt); skb_queue_tail(&q, pkt);
brcmf_rx_frame(drvr, ifidx, &q); brcmf_rx_frame(dev, ifidx, &q);
} }
/* Return pointer to interface name */ /* Return pointer to interface name */
......
...@@ -381,7 +381,7 @@ static int brcmf_host_event(struct brcmf_pub *drvr, int *ifidx, ...@@ -381,7 +381,7 @@ static int brcmf_host_event(struct brcmf_pub *drvr, int *ifidx,
return bcmerror; return bcmerror;
} }
void brcmf_rx_frame(struct brcmf_pub *drvr, int ifidx, void brcmf_rx_frame(struct device *dev, int ifidx,
struct sk_buff_head *skb_list) struct sk_buff_head *skb_list)
{ {
unsigned char *eth; unsigned char *eth;
...@@ -390,6 +390,8 @@ void brcmf_rx_frame(struct brcmf_pub *drvr, int ifidx, ...@@ -390,6 +390,8 @@ void brcmf_rx_frame(struct brcmf_pub *drvr, int ifidx,
struct sk_buff *skb, *pnext; struct sk_buff *skb, *pnext;
struct brcmf_if *ifp; struct brcmf_if *ifp;
struct brcmf_event_msg event; struct brcmf_event_msg event;
struct brcmf_bus *bus_if = dev_get_drvdata(dev);
struct brcmf_pub *drvr = bus_if->drvr;
brcmf_dbg(TRACE, "Enter\n"); brcmf_dbg(TRACE, "Enter\n");
......
...@@ -1461,7 +1461,7 @@ static u8 brcmf_sdbrcm_rxglom(struct brcmf_sdio *bus, u8 rxseq) ...@@ -1461,7 +1461,7 @@ static u8 brcmf_sdbrcm_rxglom(struct brcmf_sdio *bus, u8 rxseq)
/* sent any remaining packets up */ /* sent any remaining packets up */
if (bus->glom.qlen) { if (bus->glom.qlen) {
up(&bus->sdsem); up(&bus->sdsem);
brcmf_rx_frame(bus->drvr, ifidx, &bus->glom); brcmf_rx_frame(bus->sdiodev->dev, ifidx, &bus->glom);
down(&bus->sdsem); down(&bus->sdsem);
} }
...@@ -2062,7 +2062,7 @@ brcmf_sdbrcm_readframes(struct brcmf_sdio *bus, uint maxframes, bool *finished) ...@@ -2062,7 +2062,7 @@ brcmf_sdbrcm_readframes(struct brcmf_sdio *bus, uint maxframes, bool *finished)
/* Unlock during rx call */ /* Unlock during rx call */
up(&bus->sdsem); up(&bus->sdsem);
brcmf_rx_packet(bus->drvr, ifidx, pkt); brcmf_rx_packet(bus->sdiodev->dev, ifidx, pkt);
down(&bus->sdsem); down(&bus->sdsem);
} }
rxcount = maxframes - rxleft; rxcount = maxframes - rxleft;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment