Commit 76b5a96d authored by Hante Meuleman's avatar Hante Meuleman Committed by John W. Linville

brcmfmac: (clean) Rename dhd_common.c in common.c

Reviewed-by: default avatarArend Van Spriel <arend@broadcom.com>
Reviewed-by: default avatarPieter-Paul Giesberts <pieterpg@broadcom.com>
Signed-off-by: default avatarHante Meuleman <meuleman@broadcom.com>
Signed-off-by: default avatarArend van Spriel <arend@broadcom.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent d14f78b9
......@@ -30,7 +30,7 @@ brcmfmac-objs += \
fwsignal.o \
p2p.o \
proto.o \
dhd_common.o \
common.o \
dhd_linux.o \
firmware.o \
feature.o \
......
......@@ -52,9 +52,9 @@ bool brcmf_c_prec_enq(struct device *dev, struct pktq *q,
}
/* Determine precedence from which to evict packet, if any */
if (pktq_pfull(q, prec))
if (pktq_pfull(q, prec)) {
eprec = prec;
else if (pktq_full(q)) {
} else if (pktq_full(q)) {
p = brcmu_pktq_peek_tail(q, &eprec);
if (eprec > prec)
return false;
......
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