Revision c68875fa82a8ab2f45a32aa8adab059f3cb1ed01 authored by LEROY Christophe on 11 August 2015, 10:11:03 UTC, committed by David S. Miller on 11 August 2015, 19:05:34 UTC
We are not interested in interrupts for partially transmitted frames.
Unlike SCC and FCC, the FEC doesn't handle the I bit in buffer
descriptors, instead it defines two interrupt bits, TXB and TXF.

We have to mask TXB in order to only get interrupts once the
frame is fully transmitted.

Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 8961822
Raw File
ld-version.sh
#!/usr/bin/awk -f
# extract linker version number from stdin and turn into single number
	{
	gsub(".*)", "");
	split($1,a, ".");
	print a[1]*10000000 + a[2]*100000 + a[3]*10000 + a[4]*100 + a[5];
	exit
	}
back to top