Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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

parent d14f78b9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ brcmfmac-objs += \
		fwsignal.o \
		p2p.o \
		proto.o \
		dhd_common.o \
		common.o \
		dhd_linux.o \
		firmware.o \
		feature.o \
+2 −2
Original line number Diff line number Diff line
@@ -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;